[asterisk-commits] file: branch 1.4 r69014 - /branches/1.4/channels/chan_iax2.c

asterisk-commits at lists.digium.com asterisk-commits at lists.digium.com
Tue Jun 12 12:36:30 MST 2007


Author: file
Date: Tue Jun 12 14:36:29 2007
New Revision: 69014

URL: http://svn.digium.com/view/asterisk?view=rev&rev=69014
Log:
Change the full frame dropping log message to debug to avoid future bug reports.

Modified:
    branches/1.4/channels/chan_iax2.c

Modified: branches/1.4/channels/chan_iax2.c
URL: http://svn.digium.com/view/asterisk/branches/1.4/channels/chan_iax2.c?view=diff&rev=69014&r1=69013&r2=69014
==============================================================================
--- branches/1.4/channels/chan_iax2.c (original)
+++ branches/1.4/channels/chan_iax2.c Tue Jun 12 14:36:29 2007
@@ -6319,7 +6319,8 @@
 		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",
+			if (option_debug)
+				ast_log(LOG_DEBUG, "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));



More information about the asterisk-commits mailing list