don't log lost logs of 0
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@7656 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
parent
32e267ee53
commit
69a27f15b0
|
@ -109,13 +109,15 @@ static switch_status_t socket_logger(const switch_log_node_t *node, switch_log_l
|
||||||
char *data = strdup(node->data);
|
char *data = strdup(node->data);
|
||||||
if (data) {
|
if (data) {
|
||||||
if (switch_queue_trypush(l->log_queue, data) == SWITCH_STATUS_SUCCESS) {
|
if (switch_queue_trypush(l->log_queue, data) == SWITCH_STATUS_SUCCESS) {
|
||||||
int ll = l->lost_logs;
|
if (l->lost_logs) {
|
||||||
switch_event_t *event;
|
int ll = l->lost_logs;
|
||||||
l->lost_logs = 0;
|
switch_event_t *event;
|
||||||
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_CRIT, "Lost %d log lines!\n", ll);
|
l->lost_logs = 0;
|
||||||
if (switch_event_create(&event, SWITCH_EVENT_TRAP) == SWITCH_STATUS_SUCCESS) {
|
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_CRIT, "Lost %d log lines!\n", ll);
|
||||||
switch_event_add_header(event, SWITCH_STACK_BOTTOM, "info", "lost %d log lines", ll);
|
if (switch_event_create(&event, SWITCH_EVENT_TRAP) == SWITCH_STATUS_SUCCESS) {
|
||||||
switch_event_fire(&event);
|
switch_event_add_header(event, SWITCH_STACK_BOTTOM, "info", "lost %d log lines", ll);
|
||||||
|
switch_event_fire(&event);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
switch_safe_free(data);
|
switch_safe_free(data);
|
||||||
|
|
Loading…
Reference in New Issue