aboutsummaryrefslogtreecommitdiffstats
path: root/main/audiohook.c
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2008-07-14 10:40:20 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2008-07-14 10:40:20 +0000
commit48db5f3678935cdc13a4bd3b9fc7aad7cac84c49 (patch)
tree96cefcc7c14be8d9f60b46492ee5bb05a8452ad4 /main/audiohook.c
parent1a39d39e59d034130d87b74e6398711b236b28ca (diff)
Merged revisions 130635 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk ................ r130635 | russell | 2008-07-14 05:39:23 -0500 (Mon, 14 Jul 2008) | 10 lines 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: http://svn.digium.com/svn/asterisk/branches/1.6.0@130636 f38db490-d61c-443f-a65b-d21fe96a405b
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 f4bbc8b39..a85f4cba6 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;
}