[asterisk-commits] russell: branch 1.6.0 r121408 - in /branches/1.6.0: ./ channels/chan_iax2.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Mon Jun 9 19:53:04 CDT 2008
Author: russell
Date: Mon Jun 9 19:53:04 2008
New Revision: 121408
URL: http://svn.digium.com/view/asterisk?view=rev&rev=121408
Log:
Merged revisions 121407 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk
........
r121407 | russell | 2008-06-09 19:52:46 -0500 (Mon, 09 Jun 2008) | 2 lines
Bump up the debug level of a couple of messages
........
Modified:
branches/1.6.0/ (props changed)
branches/1.6.0/channels/chan_iax2.c
Propchange: branches/1.6.0/
------------------------------------------------------------------------------
Binary property 'trunk-merged' - no diff available.
Modified: branches/1.6.0/channels/chan_iax2.c
URL: http://svn.digium.com/view/asterisk/branches/1.6.0/channels/chan_iax2.c?view=diff&rev=121408&r1=121407&r2=121408
==============================================================================
--- branches/1.6.0/channels/chan_iax2.c (original)
+++ branches/1.6.0/channels/chan_iax2.c Mon Jun 9 19:53:04 2008
@@ -9549,13 +9549,13 @@
}
if (!reg->callno) {
- ast_debug(1, "Allocate call number\n");
+ ast_debug(3, "Allocate call number\n");
reg->callno = find_callno_locked(0, 0, ®->addr, NEW_FORCE, defaultsockfd, 0);
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;
ast_mutex_unlock(&iaxsl[reg->callno]);
}
More information about the asterisk-commits
mailing list