[asterisk-commits] tilghman: trunk r191494 - /trunk/channels/chan_iax2.c

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Fri May 1 13:18:06 CDT 2009


Author: tilghman
Date: Fri May  1 13:18:00 2009
New Revision: 191494

URL: http://svn.digium.com/svn-view/asterisk?view=rev&rev=191494
Log:
Set debug message back to DEBUG level.
(closes issue #15007)
 Reported by: hulber

Modified:
    trunk/channels/chan_iax2.c

Modified: trunk/channels/chan_iax2.c
URL: http://svn.digium.com/svn-view/asterisk/trunk/channels/chan_iax2.c?view=diff&rev=191494&r1=191493&r2=191494
==============================================================================
--- trunk/channels/chan_iax2.c (original)
+++ trunk/channels/chan_iax2.c Fri May  1 13:18:00 2009
@@ -1306,8 +1306,8 @@
 			/* I am the schedule, so I'm allowed to do this */
 			iaxs[callno]->pingid = -1;
 		}
-	} else if (option_debug > 0) {
-		ast_log(LOG_DEBUG, "I was supposed to send a PING with callno %d, but no such call exists (and I cannot remove pingid, either).\n", callno);
+	} else {
+		ast_debug(1, "I was supposed to send a PING with callno %d, but no such call exists.\n", callno);
 	}
 
 	ast_mutex_unlock(&iaxsl[callno]);
@@ -1368,7 +1368,7 @@
 			iaxs[callno]->lagid = -1;
 		}
 	} else {
-		ast_log(LOG_WARNING, "I was supposed to send a LAGRQ with callno %d, but no such call exists (and I cannot remove lagid, either).\n", callno);
+		ast_debug(1, "I was supposed to send a LAGRQ with callno %d, but no such call exists.\n", callno);
 	}
 
 	ast_mutex_unlock(&iaxsl[callno]);




More information about the asterisk-commits mailing list