[asterisk-commits] russell: trunk r110615 - in /trunk: ./ channels/chan_iax2.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Mon Mar 24 12:36:04 CDT 2008
Author: russell
Date: Mon Mar 24 12:36:04 2008
New Revision: 110615
URL: http://svn.digium.com/view/asterisk?view=rev&rev=110615
Log:
Merged revisions 110614 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4
........
r110614 | russell | 2008-03-24 12:34:56 -0500 (Mon, 24 Mar 2008) | 2 lines
Turn a NOTICE into a DEBUG message.
........
Modified:
trunk/ (props changed)
trunk/channels/chan_iax2.c
Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-1.4-merged' - no diff available.
Modified: trunk/channels/chan_iax2.c
URL: http://svn.digium.com/view/asterisk/trunk/channels/chan_iax2.c?view=diff&rev=110615&r1=110614&r2=110615
==============================================================================
--- trunk/channels/chan_iax2.c (original)
+++ trunk/channels/chan_iax2.c Mon Mar 24 12:36:04 2008
@@ -1086,7 +1086,7 @@
}
time(&t);
if (t != lasterror)
- ast_log(LOG_NOTICE, "Out of idle IAX2 threads for scheduling!\n");
+ ast_debug(1, "Out of idle IAX2 threads for scheduling!\n");
lasterror = t;
return -1;
@@ -7430,7 +7430,7 @@
if (!(thread = find_idle_thread())) {
time(&t);
if (t != last_errtime)
- ast_log(LOG_NOTICE, "Out of idle IAX2 threads for I/O, pausing!\n");
+ ast_debug(1, "Out of idle IAX2 threads for I/O, pausing!\n");
last_errtime = t;
usleep(1);
return 1;
More information about the asterisk-commits
mailing list