Fix wrong LOG_INFO debug logs.

agranig/ro-empty-dir
Andreas Granig 11 years ago
parent 889795c14a
commit ff2a7feddc

@ -7564,14 +7564,14 @@ static int vm_execmain(struct ast_channel *chan, void *data)
ast_log(LOG_DEBUG, "Number of new messages: %d\n",vms.newmessages);
/* Select proper mailbox FIRST!! */
ast_log(LOG_INFO, "+++++ 1");
ast_log(LOG_NOTICE, "+++++ 1");
if (play_auto) {
ast_log(LOG_INFO, "+++++ play auto, open mailbox %d", play_folder);
ast_log(LOG_NOTICE, "+++++ play auto, open mailbox %d", play_folder);
res = open_mailbox(&vms, vmu, play_folder);
if (res == ERROR_LOCK_PATH)
goto out;
ast_log(LOG_INFO, "+++++ %d msg in folder %d", vms.lastmsg, play_folder);
ast_log(LOG_NOTICE, "+++++ %d msg in folder %d", vms.lastmsg, play_folder);
/* If there are no new messages, inform the user and hangup */
if (vms.lastmsg == -1) {
cmd = vm_browse_messages(chan, &vms, vmu);
@ -7579,16 +7579,16 @@ static int vm_execmain(struct ast_channel *chan, void *data)
goto out;
}
} else {
ast_log(LOG_INFO, "+++++ no play auto, open mailbox %d", play_folder);
ast_log(LOG_NOTICE, "+++++ no play auto, open mailbox %d", play_folder);
if (!vms.newmessages && vms.oldmessages) {
ast_log(LOG_INFO, "+++++ %d new, %d old, last is %d in folder %d", vms.newmessages, vms.oldmessages, vms.lastmsg, play_folder);
ast_log(LOG_NOTICE, "+++++ %d new, %d old, last is %d in folder %d", vms.newmessages, vms.oldmessages, vms.lastmsg, play_folder);
/* If we only have old messages start here */
res = open_mailbox(&vms, vmu, 1);
play_folder = 1;
if (res == ERROR_LOCK_PATH)
goto out;
} else {
ast_log(LOG_INFO, "+++++ missing path here, %d new, %d old, last is %d in folder %d", vms.newmessages, vms.oldmessages, vms.lastmsg, play_folder);
ast_log(LOG_NOTICE, "+++++ missing path here, %d new, %d old, last is %d in folder %d", vms.newmessages, vms.oldmessages, vms.lastmsg, play_folder);
}
}

Loading…
Cancel
Save