[Asterisk-cvs] asterisk/channels chan_iax2.c, 1.378.2.1, 1.378.2.2 chan_sip.c, 1.913.2.1, 1.913.2.2

russell russell
Sun Nov 20 20:11:35 CST 2005


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

Modified Files:
      Tag: v1-2
	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.378.2.1
retrieving revision 1.378.2.2
diff -u -d -r1.378.2.1 -r1.378.2.2
--- chan_iax2.c	20 Nov 2005 23:33:03 -0000	1.378.2.1
+++ chan_iax2.c	21 Nov 2005 01:00:50 -0000	1.378.2.2
@@ -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.913.2.1
retrieving revision 1.913.2.2
diff -u -d -r1.913.2.1 -r1.913.2.2
--- chan_sip.c	17 Nov 2005 20:26:27 -0000	1.913.2.1
+++ chan_sip.c	21 Nov 2005 01:00:51 -0000	1.913.2.2
@@ -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 */




More information about the svn-commits mailing list