From: Joshua Colp Date: Tue, 12 Jun 2007 19:38:17 +0000 (+0000) Subject: Merged revisions 69014 via svnmerge from X-Git-Tag: 1.6.0-beta1~3^2~2389 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0b75ad2db999179eb195ad47ebf37f34f5ec9345;p=thirdparty%2Fasterisk.git 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 --- diff --git a/channels/chan_iax2.c b/channels/chan_iax2.c index 674a3c2055..88e1f54958 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));