aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoralecdavis <alecdavis@f38db490-d61c-443f-a65b-d21fe96a405b>2011-04-07 10:25:51 +0000
committeralecdavis <alecdavis@f38db490-d61c-443f-a65b-d21fe96a405b>2011-04-07 10:25:51 +0000
commit303731f8bb80573d2a2e26ad51f42bd6b0103dc9 (patch)
tree3ef912ba6737d1de9b1a9a351dba2ee59abec8e2
parenteffba761d05e87e680cf16e71cd831e4d7906030 (diff)
app_voicemail: close_mailbox change LOG_WARNING to LOG_NOTICE
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@313003 f38db490-d61c-443f-a65b-d21fe96a405b
-rw-r--r--apps/app_voicemail.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/app_voicemail.c b/apps/app_voicemail.c
index 41c13dd28..396ed8bd9 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 */