+2005-11-20 Russell Bryant <russell@digium.com>
+
+ * 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 <josh@asteriasgi.com>
* pbx/pbx_spool.c: Fix crash in spooler if set/setvar declared incorrectly. (issue #5806)
}
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);
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;
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 */