summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-rw-r--r--apps/app_mixmonitor.c2
-rw-r--r--apps/app_voicemail.c2
-rw-r--r--apps/app_waitforsilence.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/apps/app_mixmonitor.c b/apps/app_mixmonitor.c
index 6a2a0fcec..8013c8c68 100644
--- a/apps/app_mixmonitor.c
+++ b/apps/app_mixmonitor.c
@@ -502,7 +502,7 @@ static void add_vm_recipients_from_string(struct mixmonitor *mixmonitor, const c
ast_copy_string(recipient->folder, cur_folder, sizeof(recipient->folder));
/* Add to list */
- ast_verb(5, "Adding %s@%s to recipient list\n", recipient->mailbox, recipient->context);
+ ast_verb(4, "Adding %s@%s to recipient list\n", recipient->mailbox, recipient->context);
AST_LIST_INSERT_HEAD(&mixmonitor->recipient_list, recipient, list);
} else {
ast_log(LOG_ERROR, "Failed to properly parse extension and/or context from element %d of recipient string: %s\n", elements_processed, vm_recipients);
diff --git a/apps/app_voicemail.c b/apps/app_voicemail.c
index cb85c5be9..891d23360 100644
--- a/apps/app_voicemail.c
+++ b/apps/app_voicemail.c
@@ -7557,7 +7557,7 @@ static int get_folder(struct ast_channel *chan, int start)
if (ast_fileexists(fn, NULL, NULL)) {
d = vm_play_folder_name(chan, fn);
} else {
- ast_verb(1, "failed to find %s\n", fn);
+ ast_verb(4, "Failed to find file %s; falling back to INBOX\n", fn);
d = vm_play_folder_name(chan, "vm-INBOX");
}
} else {
diff --git a/apps/app_waitforsilence.c b/apps/app_waitforsilence.c
index f79247274..53870df30 100644
--- a/apps/app_waitforsilence.c
+++ b/apps/app_waitforsilence.c
@@ -179,7 +179,7 @@ static int do_waiting(struct ast_channel *chan, int timereqd, time_t waitstart,
ast_frfree(f);
}
- ast_verb(6, "Got %dms %s < %dms required\n", dsptime, wait_for_silence ? "silence" : "noise", timereqd);
+ ast_debug(1, "Got %dms %s < %dms required\n", dsptime, wait_for_silence ? "silence" : "noise", timereqd);
if (dsptime >= timereqd) {
ast_verb(3, "Exiting with %dms %s >= %dms required\n", dsptime, wait_for_silence ? "silence" : "noise", timereqd);