git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@12858
d0543943-73ff-0310-b7d9-
9358b9ac24b2
for (;;) {
for (index = (*event)->priority; index < 3; index++) {
+ int was = (*event)->priority;
if (switch_queue_trypush(EVENT_QUEUE[index], *event) == SWITCH_STATUS_SUCCESS) {
- if (index != (*event)->priority) {
- switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_WARNING, "queued event at a lower priority!\n");
+ if (index != was) {
+ switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_WARNING, "queued event at a lower priority %d/%d!\n", index, was);
}
goto end;
}