[asterisk-commits] mmichelson: trunk r401365 - in /trunk: ./ main/bridge_channel.c

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Mon Oct 21 16:06:43 CDT 2013


Author: mmichelson
Date: Mon Oct 21 16:06:41 2013
New Revision: 401365

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=401365
Log:
Remove a noisy debug message from bridging code.

This particular debug message, during a stress test, was logged so
often that it appeared that there may be a memory leak in the logger
code. In actuality, there was no memory leak, but the logger thread
was having a hard time keeping up with the demands of the rest of the
system.

Since this debug message has no value at all, the best way to fix the
problem was to just remove the message.

(closes issue AST-1225)
reported by John Bigelow

Patches:
	spammy_log.diff uploaded by Mark Michelson (License #5049)
........

Merged revisions 401364 from http://svn.asterisk.org/svn/asterisk/branches/12

Modified:
    trunk/   (props changed)
    trunk/main/bridge_channel.c

Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-12-merged' - no diff available.

Modified: trunk/main/bridge_channel.c
URL: http://svnview.digium.com/svn/asterisk/trunk/main/bridge_channel.c?view=diff&rev=401365&r1=401364&r2=401365
==============================================================================
--- trunk/main/bridge_channel.c (original)
+++ trunk/main/bridge_channel.c Mon Oct 21 16:06:41 2013
@@ -1879,9 +1879,6 @@
 			ast_channel_name(bridge_channel->chan));
 		ast_cond_wait(&bridge_channel->cond, ao2_object_get_lockaddr(bridge_channel));
 	} else {
-		ast_debug(10, "Bridge %s: %p(%s) is going into a waitfor\n",
-			bridge_channel->bridge->uniqueid, bridge_channel,
-			ast_channel_name(bridge_channel->chan));
 		ast_bridge_channel_unlock(bridge_channel);
 		outfd = -1;
 		ms = bridge_channel_next_interval(bridge_channel);




More information about the asterisk-commits mailing list