summaryrefslogtreecommitdiff
path: root/main/audiohook.c
diff options
context:
space:
mode:
authorRussell Bryant <russell@russellbryant.com>2008-07-14 10:39:23 +0000
committerRussell Bryant <russell@russellbryant.com>2008-07-14 10:39:23 +0000
commitc4c3e2f8754dce3e3244a9d0c1305b01e77af48e (patch)
treee17cc5fd9c130d874cd5e5a79bfa5791e5284dc0 /main/audiohook.c
parent0d49cdae3ec7aac4edee3c3c78a04d8e3afe07b2 (diff)
Merged revisions 130634 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r130634 | russell | 2008-07-14 05:38:14 -0500 (Mon, 14 Jul 2008) | 2 lines Bump up the debug level for a message. ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@130635 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'main/audiohook.c')
-rw-r--r--main/audiohook.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/main/audiohook.c b/main/audiohook.c
index 59d3171a2..bd30ab772 100644
--- a/main/audiohook.c
+++ b/main/audiohook.c
@@ -202,13 +202,13 @@ static struct ast_frame *audiohook_read_frame_both(struct ast_audiohook *audioho
/* If we want to provide only a read factory make sure we aren't waiting for other audio */
if (usable_read && !usable_write && (ast_tvdiff_ms(ast_tvnow(), audiohook->write_time) < (samples/8)*2)) {
- ast_debug(1, "Write factory %p was pretty quick last time, waiting for them.\n", &audiohook->write_factory);
+ ast_debug(3, "Write factory %p was pretty quick last time, waiting for them.\n", &audiohook->write_factory);
return NULL;
}
/* If we want to provide only a write factory make sure we aren't waiting for other audio */
if (usable_write && !usable_read && (ast_tvdiff_ms(ast_tvnow(), audiohook->read_time) < (samples/8)*2)) {
- ast_debug(1, "Read factory %p was pretty quick last time, waiting for them.\n", &audiohook->read_factory);
+ ast_debug(3, "Read factory %p was pretty quick last time, waiting for them.\n", &audiohook->read_factory);
return NULL;
}