[svn-commits] russell: branch 1.4 r119533 - /branches/1.4/channels/chan_iax2.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Sun Jun 1 20:06:10 CDT 2008


Author: russell
Date: Sun Jun  1 20:06:09 2008
New Revision: 119533

URL: http://svn.digium.com/view/asterisk?view=rev&rev=119533
Log:
Change a debug message to an actual debug message

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=119533&r1=119532&r2=119533
==============================================================================
--- branches/1.4/channels/chan_iax2.c (original)
+++ branches/1.4/channels/chan_iax2.c Sun Jun  1 20:06:09 2008
@@ -1290,7 +1290,8 @@
 
 	if (owner) {
 		if (ast_mutex_trylock(&owner->lock)) {
-			ast_log(LOG_NOTICE, "Avoiding IAX destroy deadlock\n");
+			if (option_debug > 2)
+				ast_log(LOG_DEBUG, "Avoiding IAX destroy deadlock\n");
 			DEADLOCK_AVOIDANCE(&iaxsl[callno]);
 			goto retry;
 		}




More information about the svn-commits mailing list