switch_socket_timeout_set(listener->sock, 5000000);
#endif
if (listener->profile->debug > 0) {
- skinny_log_l(listener, SWITCH_LOG_DEBUG, "Connection Open%s\n", "");
+ skinny_log_l_msg(listener, SWITCH_LOG_DEBUG, "Connection Open\n");
}
switch_set_flag_locked(listener, LFLAG_RUNNING);
if (status != SWITCH_STATUS_SUCCESS) {
switch(status) {
case SWITCH_STATUS_TIMEOUT:
- skinny_log_l(listener, SWITCH_LOG_DEBUG, "Communication Time Out%s\n", "");
+ skinny_log_l_msg(listener, SWITCH_LOG_DEBUG, "Communication Time Out\n");
if(listener->expire_time < switch_epoch_time_now(NULL)) {
switch_event_t *event = NULL;
}
break;
default:
- skinny_log_l(listener, SWITCH_LOG_DEBUG, "Communication Error%s\n", "");
+ skinny_log_l_msg(listener, SWITCH_LOG_DEBUG, "Communication Error\n");
}
switch_clear_flag_locked(listener, LFLAG_RUNNING);
break;
remove_listener(listener);
if (listener->profile->debug > 0) {
- skinny_log_l(listener, SWITCH_LOG_DEBUG, "Communication Complete%s\n", "");
+ skinny_log_l_msg(listener, SWITCH_LOG_DEBUG, "Communication Complete\n");
}
switch_thread_rwlock_wrlock(listener->rwlock);
switch_thread_rwlock_unlock(listener->rwlock);
if (listener->profile->debug > 0) {
- skinny_log_l(listener, SWITCH_LOG_DEBUG, "Communication Closed%s\n", "");
+ skinny_log_l_msg(listener, SWITCH_LOG_DEBUG, "Communication Closed\n");
}
if(destroy_pool == 0) {
ts = switch_micro_time_now();
switch_time_exp_lt(&tm, ts);
- skinny_log_l_ffl(listener, file, func, line, SWITCH_LOG_DEBUG,
- "Send Define Current Time Date with Timestamp (%d)\n", (uint32_t) ts / 1000000);
-
return send_define_time_date(listener,
tm.tm_year + 1900,
tm.tm_mon + 1,