summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoshua Colp <jcolp@digium.com>2007-06-12 19:38:17 +0000
committerJoshua Colp <jcolp@digium.com>2007-06-12 19:38:17 +0000
commit0b75ad2db999179eb195ad47ebf37f34f5ec9345 (patch)
tree400ea63f91bc42a0151c514adc9c8cdb84ed7c1c
parent74cda06deb013929640bdeaae72aa7de1ca1e6bd (diff)
Merged revisions 69014 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r69014 | file | 2007-06-12 15:36:29 -0400 (Tue, 12 Jun 2007) | 2 lines Change the full frame dropping log message to debug to avoid future bug reports. ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@69015 65c4cc65-6c06-0410-ace0-fbb531ad65f3
-rw-r--r--channels/chan_iax2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/channels/chan_iax2.c b/channels/chan_iax2.c
index 674a3c205..88e1f5495 100644
--- a/channels/chan_iax2.c
+++ b/channels/chan_iax2.c
@@ -6572,7 +6572,7 @@ static int socket_read(int *id, int fd, short events, void *cbdata)
if (cur) {
/* we found another thread processing a full frame for this call,
so we can't accept this frame */
- ast_log(LOG_WARNING, "Dropping frame from %s (callno %d) of type %d (subclass %d) due to frame of type %d (subclass %d) already in process\n",
+ ast_debug(1, "Dropping frame from %s (callno %d) of type %d (subclass %d) due to frame of type %d (subclass %d) already in process\n",
ast_inet_ntoa(thread->iosin.sin_addr), cur->ffinfo.callno,
fh->type, uncompress_subclass(fh->csub),
cur->ffinfo.type, uncompress_subclass(cur->ffinfo.csub));