From: Russell Bryant Date: Mon, 21 Nov 2005 00:57:35 +0000 (+0000) Subject: issue #5794 X-Git-Tag: 1.4.0-beta1~3279 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=913232e82e9d2a1b25c0542cd8d73a7c7f6c3b1d;p=thirdparty%2Fasterisk.git issue #5794 git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@7156 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/ChangeLog b/ChangeLog index 099ba649c0..9cd3bbe710 100755 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2005-11-20 Russell Bryant + + * channels/chan_sip.c channels/chan_iax2.c: Change warning messages about the number of scheduled events happening all at once to debug messages. (issue #5794) + 2005-11-20 Josh Roberson * pbx/pbx_spool.c: Fix crash in spooler if set/setvar declared incorrectly. (issue #5806) diff --git a/channels/chan_iax2.c b/channels/chan_iax2.c index c02b19d631..1c3c0b390a 100755 --- a/channels/chan_iax2.c +++ b/channels/chan_iax2.c @@ -7956,7 +7956,7 @@ static void *network_thread(void *ignore) } 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 @@ static void *network_thread(void *ignore) 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; diff --git a/channels/chan_sip.c b/channels/chan_sip.c index c3b6e9b1da..3d5e4544c6 100755 --- a/channels/chan_sip.c +++ b/channels/chan_sip.c @@ -11245,12 +11245,12 @@ restartsearch: 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 */