From 1166d8dfa10d1e3233e13dd68fadd3186b773ab4 Mon Sep 17 00:00:00 2001 From: Alec L Davis <sivad.a@paradise.net.nz> Date: Thu, 7 Apr 2011 10:25:51 +0000 Subject: [PATCH] app_voicemail: close_mailbox change LOG_WARNING to LOG_NOTICE git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@313003 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- apps/app_voicemail.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/app_voicemail.c b/apps/app_voicemail.c index 41c13dd283..396ed8bd98 100644 --- a/apps/app_voicemail.c +++ b/apps/app_voicemail.c @@ -7849,7 +7849,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 */ -- GitLab