[svn-commits] russell: branch russell/events r103671 - /team/russell/events/channels/

SVN commits to the Digium repositories svn-commits at lists.digium.com
Thu Feb 14 08:11:25 CST 2008


Author: russell
Date: Thu Feb 14 08:11:25 2008
New Revision: 103671

URL: http://svn.digium.com/view/asterisk?view=rev&rev=103671
Log:
bump up the debug level on some verbose messages

Modified:
    team/russell/events/channels/chan_iax2.c

Modified: team/russell/events/channels/chan_iax2.c
URL: http://svn.digium.com/view/asterisk/team/russell/events/channels/chan_iax2.c?view=diff&rev=103671&r1=103670&r2=103671
==============================================================================
--- team/russell/events/channels/chan_iax2.c (original)
+++ team/russell/events/channels/chan_iax2.c Thu Feb 14 08:11:25 2008
@@ -9287,13 +9287,13 @@
 	}
 
 	if (!reg->callno) {
-		ast_debug(1, "Allocate call number\n");
+		ast_debug(3, "Allocate call number\n");
 		reg->callno = find_callno(0, 0, &reg->addr, NEW_FORCE, defaultsockfd);
 		if (reg->callno < 1) {
 			ast_log(LOG_WARNING, "Unable to create call for registration\n");
 			return -1;
 		} else
-			ast_debug(1, "Registration created on call %d\n", reg->callno);
+			ast_debug(3, "Registration created on call %d\n", reg->callno);
 		iaxs[reg->callno]->reg = reg;
 	}
 	/* Setup the next registration a little early */




More information about the svn-commits mailing list