From: Alec L Davis Date: Thu, 7 Apr 2011 10:26:13 +0000 (+0000) Subject: app_voicemail: close_mailbox change LOG_WARNING to LOG_NOTICE X-Git-Tag: 1.6.2.19-rc1~3^2~66 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=360614263cbcfe0add405f5ef613880a0decf90a;p=thirdparty%2Fasterisk.git app_voicemail: close_mailbox change LOG_WARNING to LOG_NOTICE git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.2@313004 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/apps/app_voicemail.c b/apps/app_voicemail.c index fbd7f55b9d..9a78f2c63b 100644 --- a/apps/app_voicemail.c +++ b/apps/app_voicemail.c @@ -7562,7 +7562,7 @@ static int close_mailbox(struct vm_state *vms, struct ast_vm_user *vmu) /* update count as message may have arrived while we've got mailbox open */ last_msg_idx = last_message_index(vmu, vms->curdir); if (last_msg_idx != vms->lastmsg) { - ast_log(AST_LOG_WARNING, "%d messages received after mailbox opened.\n", last_msg_idx - vms->lastmsg); + ast_log(AST_LOG_NOTICE, "%d messages received after mailbox opened.\n", last_msg_idx - vms->lastmsg); } /* must check up to last detected message, just in case it is erroneously greater than maxmsg */