[svn-commits] tilghman: branch 1.6.2 r191554 - in /branches/1.6.2: ./ channels/chan_iax2.c
SVN commits to the Digium repositories
svn-commits at lists.digium.com
Fri May 1 13:31:43 CDT 2009
Author: tilghman
Date: Fri May 1 13:31:39 2009
New Revision: 191554
URL: http://svn.digium.com/svn-view/asterisk?view=rev&rev=191554
Log:
Merged revisions 191494 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk
........
r191494 | tilghman | 2009-05-01 13:18:00 -0500 (Fri, 01 May 2009) | 4 lines
Set debug message back to DEBUG level.
(closes issue #15007)
Reported by: hulber
........
Modified:
branches/1.6.2/ (props changed)
branches/1.6.2/channels/chan_iax2.c
Propchange: branches/1.6.2/
------------------------------------------------------------------------------
Binary property 'trunk-merged' - no diff available.
Modified: branches/1.6.2/channels/chan_iax2.c
URL: http://svn.digium.com/svn-view/asterisk/branches/1.6.2/channels/chan_iax2.c?view=diff&rev=191554&r1=191553&r2=191554
==============================================================================
--- branches/1.6.2/channels/chan_iax2.c (original)
+++ branches/1.6.2/channels/chan_iax2.c Fri May 1 13:31:39 2009
@@ -1299,8 +1299,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]);
@@ -1361,7 +1361,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 svn-commits
mailing list