Update of /usr/cvsroot/asterisk/channels
In directory mongoose.digium.com:/tmp/cvs-serv18856/channels

Modified Files:
        chan_iax2.c chan_sip.c 
Log Message:
issue #5794


Index: chan_iax2.c
===================================================================
RCS file: /usr/cvsroot/asterisk/channels/chan_iax2.c,v
retrieving revision 1.379
retrieving revision 1.380
diff -u -d -r1.379 -r1.380
--- chan_iax2.c 20 Nov 2005 05:19:04 -0000      1.379
+++ chan_iax2.c 21 Nov 2005 00:57:35 -0000      1.380
@@ -7956,7 +7956,7 @@
                }
                ast_mutex_unlock(&iaxq.lock);
                if (count >= 20)
-                       ast_log(LOG_WARNING, "chan_iax2: Sent %d queued 
outbound frames all at once\n", count);
+                       ast_log(LOG_DEBUG, "chan_iax2: Sent %d queued outbound 
frames all at once\n", count);
 
                /* Now do the IO, and run scheduled tasks */
                res = ast_sched_wait(sched);
@@ -7965,10 +7965,10 @@
                res = ast_io_wait(io, res);
                if (res >= 0) {
                        if (res >= 20)
-                               ast_log(LOG_WARNING, "chan_iax2: ast_io_wait 
ran %d I/Os all at once\n", res);
+                               ast_log(LOG_DEBUG, "chan_iax2: ast_io_wait ran 
%d I/Os all at once\n", res);
                        count = ast_sched_runq(sched);
                        if (count >= 20)
-                               ast_log(LOG_WARNING, "chan_iax2: ast_sched_runq 
ran %d scheduled tasks all at once\n", count);
+                               ast_log(LOG_DEBUG, "chan_iax2: ast_sched_runq 
ran %d scheduled tasks all at once\n", count);
                }
        }
        return NULL;

Index: chan_sip.c
===================================================================
RCS file: /usr/cvsroot/asterisk/channels/chan_sip.c,v
retrieving revision 1.914
retrieving revision 1.915
diff -u -d -r1.914 -r1.915
--- chan_sip.c  17 Nov 2005 20:25:40 -0000      1.914
+++ chan_sip.c  21 Nov 2005 00:57:35 -0000      1.915
@@ -11245,12 +11245,12 @@
                        res = 1;
                res = ast_io_wait(io, res);
                if (res > 20)
-                       ast_log(LOG_WARNING, "chan_sip: ast_io_wait ran %d all 
at once\n", res);
+                       ast_log(LOG_DEBUG, "chan_sip: ast_io_wait ran %d all at 
once\n", res);
                ast_mutex_lock(&monlock);
                if (res >= 0)  {
                        res = ast_sched_runq(sched);
                        if (res >= 20)
-                               ast_log(LOG_WARNING, "chan_sip: ast_sched_runq 
ran %d all at once\n", res);
+                               ast_log(LOG_DEBUG, "chan_sip: ast_sched_runq 
ran %d all at once\n", res);
                }
 
                /* needs work to send mwi to realtime peers */

_______________________________________________
Asterisk-Cvs mailing list
[email protected]
http://lists.digium.com/mailman/listinfo/asterisk-cvs

Reply via email to