mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-02-08 08:51:50 +00:00
FS-8286: Minor debug log level tweaks
Adjust some DEBUG and INFO log lines, reducing log verbosity at the INFO level while increasing call debugging info.
This commit is contained in:
parent
60d04cb477
commit
3a9e7f08b4
@ -2435,7 +2435,7 @@ switch_status_t conference_api_sub_pauserec(conference_obj_t *conference, switch
|
|||||||
}
|
}
|
||||||
stream->write_function(stream, "%s recording file %s\n",
|
stream->write_function(stream, "%s recording file %s\n",
|
||||||
action == REC_ACTION_PAUSE ? "Pause" : "Resume", argv[2]);
|
action == REC_ACTION_PAUSE ? "Pause" : "Resume", argv[2]);
|
||||||
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "%s recording file %s\n",
|
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_INFO, "%s recording file %s\n",
|
||||||
action == REC_ACTION_PAUSE ? "Pause" : "Resume", argv[2]);
|
action == REC_ACTION_PAUSE ? "Pause" : "Resume", argv[2]);
|
||||||
|
|
||||||
if (!conference_record_action(conference, argv[2], action)) {
|
if (!conference_record_action(conference, argv[2], action)) {
|
||||||
|
@ -583,7 +583,7 @@ void conference_loop_transfer(conference_member_t *member, caller_control_action
|
|||||||
switch_log_printf(SWITCH_CHANNEL_SESSION_LOG(member->session), SWITCH_LOG_ERROR, "Unable to allocate memory to duplicate transfer data.\n");
|
switch_log_printf(SWITCH_CHANNEL_SESSION_LOG(member->session), SWITCH_LOG_ERROR, "Unable to allocate memory to duplicate transfer data.\n");
|
||||||
goto done;
|
goto done;
|
||||||
}
|
}
|
||||||
switch_log_printf(SWITCH_CHANNEL_SESSION_LOG(member->session), SWITCH_LOG_DEBUG, "Transfering to: %s, %s, %s\n", exten, dialplan, context);
|
switch_log_printf(SWITCH_CHANNEL_SESSION_LOG(member->session), SWITCH_LOG_INFO, "Transfering to: %s, %s, %s\n", exten, dialplan, context);
|
||||||
|
|
||||||
switch_ivr_session_transfer(member->session, exten, dialplan, context);
|
switch_ivr_session_transfer(member->session, exten, dialplan, context);
|
||||||
|
|
||||||
@ -633,7 +633,7 @@ void conference_loop_exec_app(conference_member_t *member, caller_control_action
|
|||||||
goto done;
|
goto done;
|
||||||
}
|
}
|
||||||
|
|
||||||
switch_log_printf(SWITCH_CHANNEL_SESSION_LOG(member->session), SWITCH_LOG_DEBUG, "Execute app: %s, %s\n", app, arg);
|
switch_log_printf(SWITCH_CHANNEL_SESSION_LOG(member->session), SWITCH_LOG_INFO, "Execute app: %s, %s\n", app, arg);
|
||||||
|
|
||||||
channel = switch_core_session_get_channel(member->session);
|
channel = switch_core_session_get_channel(member->session);
|
||||||
|
|
||||||
@ -1388,7 +1388,7 @@ void conference_loop_output(conference_member_t *member)
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
switch_log_printf(SWITCH_CHANNEL_CHANNEL_LOG(channel), SWITCH_LOG_DEBUG, "Channel leaving conference, cause: %s\n",
|
switch_log_printf(SWITCH_CHANNEL_CHANNEL_LOG(channel), SWITCH_LOG_INFO, "Channel leaving conference, cause: %s\n",
|
||||||
switch_channel_cause2str(switch_channel_get_cause(channel)));
|
switch_channel_cause2str(switch_channel_get_cause(channel)));
|
||||||
|
|
||||||
/* if it's an outbound channel, store the release cause in the conference struct, we might need it */
|
/* if it's an outbound channel, store the release cause in the conference struct, we might need it */
|
||||||
|
@ -125,7 +125,7 @@ void conference_member_bind_controls(conference_member_t *member, const char *co
|
|||||||
|
|
||||||
for(i = 0; i < conference_loop_mapping_len(); i++) {
|
for(i = 0; i < conference_loop_mapping_len(); i++) {
|
||||||
if (!strcasecmp(key, control_mappings[i].name)) {
|
if (!strcasecmp(key, control_mappings[i].name)) {
|
||||||
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_INFO, "%s binding '%s' to '%s'\n",
|
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "%s binding '%s' to '%s'\n",
|
||||||
switch_core_session_get_name(member->session), digits, key);
|
switch_core_session_get_name(member->session), digits, key);
|
||||||
|
|
||||||
conference_member_do_binding(member, control_mappings[i].handler, digits, data);
|
conference_member_do_binding(member, control_mappings[i].handler, digits, data);
|
||||||
|
@ -379,7 +379,7 @@ void *SWITCH_THREAD_FUNC conference_record_thread_run(switch_thread_t *thread, v
|
|||||||
switch_mutex_unlock(conference->mutex);
|
switch_mutex_unlock(conference->mutex);
|
||||||
switch_core_file_close(&member->rec->fh);
|
switch_core_file_close(&member->rec->fh);
|
||||||
}
|
}
|
||||||
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "Recording of %s Stopped\n", rec->path);
|
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_INFO, "Recording of %s Stopped\n", rec->path);
|
||||||
if (switch_event_create_subclass(&event, SWITCH_EVENT_CUSTOM, CONF_EVENT_MAINT) == SWITCH_STATUS_SUCCESS) {
|
if (switch_event_create_subclass(&event, SWITCH_EVENT_CUSTOM, CONF_EVENT_MAINT) == SWITCH_STATUS_SUCCESS) {
|
||||||
conference_event_add_data(conference, event);
|
conference_event_add_data(conference, event);
|
||||||
switch_event_add_header_string(event, SWITCH_STACK_BOTTOM, "Action", "stop-recording");
|
switch_event_add_header_string(event, SWITCH_STACK_BOTTOM, "Action", "stop-recording");
|
||||||
|
@ -362,7 +362,7 @@ void *SWITCH_THREAD_FUNC conference_thread_run(switch_thread_t *thread, void *ob
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (is_talking == 0) {
|
if (is_talking == 0) {
|
||||||
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "Conference has been idle for over %d seconds, terminating\n", conference->terminate_on_silence);
|
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_INFO, "Conference has been idle for over %d seconds, terminating\n", conference->terminate_on_silence);
|
||||||
conference_utils_set_flag(conference, CFLAG_DESTRUCT);
|
conference_utils_set_flag(conference, CFLAG_DESTRUCT);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -376,7 +376,7 @@ void *SWITCH_THREAD_FUNC conference_thread_run(switch_thread_t *thread, void *ob
|
|||||||
switch_channel_t *channel = switch_core_session_get_channel(imember->session);
|
switch_channel_t *channel = switch_core_session_get_channel(imember->session);
|
||||||
char *rfile = switch_channel_expand_variables(channel, conference->auto_record);
|
char *rfile = switch_channel_expand_variables(channel, conference->auto_record);
|
||||||
|
|
||||||
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "Auto recording file: %s\n", rfile);
|
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_INFO, "Auto recording file: %s\n", rfile);
|
||||||
conference_record_launch_thread(conference, rfile, -1, SWITCH_TRUE);
|
conference_record_launch_thread(conference, rfile, -1, SWITCH_TRUE);
|
||||||
|
|
||||||
if (rfile != conference->auto_record) {
|
if (rfile != conference->auto_record) {
|
||||||
@ -2967,7 +2967,7 @@ conference_obj_t *conference_new(char *name, conference_xml_cfg_t cfg, switch_co
|
|||||||
if ((val = switch_channel_get_variable(channel, "sound_prefix")) && !zstr(val)) {
|
if ((val = switch_channel_get_variable(channel, "sound_prefix")) && !zstr(val)) {
|
||||||
/* if no sound_prefix was set, use the channel sound_prefix */
|
/* if no sound_prefix was set, use the channel sound_prefix */
|
||||||
conference->sound_prefix = switch_core_strdup(conference->pool, val);
|
conference->sound_prefix = switch_core_strdup(conference->pool, val);
|
||||||
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_INFO, "using channel sound prefix: %s\n", conference->sound_prefix);
|
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "using channel sound prefix: %s\n", conference->sound_prefix);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -499,7 +499,7 @@ SWITCH_DECLARE(switch_status_t) switch_channel_queue_dtmf(switch_channel_t *chan
|
|||||||
int x = 0;
|
int x = 0;
|
||||||
|
|
||||||
if (!sensitive) {
|
if (!sensitive) {
|
||||||
switch_log_printf(SWITCH_CHANNEL_CHANNEL_LOG(channel), SWITCH_LOG_DEBUG, "RECV DTMF %c:%d\n", new_dtmf.digit, new_dtmf.duration);
|
switch_log_printf(SWITCH_CHANNEL_CHANNEL_LOG(channel), SWITCH_LOG_INFO, "RECV DTMF %c:%d\n", new_dtmf.digit, new_dtmf.duration);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (new_dtmf.digit != 'w' && new_dtmf.digit != 'W') {
|
if (new_dtmf.digit != 'w' && new_dtmf.digit != 'W') {
|
||||||
|
@ -6226,7 +6226,7 @@ SWITCH_DECLARE(switch_status_t) switch_core_media_activate_rtp(switch_core_sessi
|
|||||||
interval = 5000;
|
interval = 5000;
|
||||||
}
|
}
|
||||||
|
|
||||||
switch_log_printf(SWITCH_CHANNEL_SESSION_LOG(session), SWITCH_LOG_INFO, "Activating RTCP PORT %d\n", remote_rtcp_port);
|
switch_log_printf(SWITCH_CHANNEL_SESSION_LOG(session), SWITCH_LOG_DEBUG, "Activating RTCP PORT %d\n", remote_rtcp_port);
|
||||||
switch_rtp_activate_rtcp(a_engine->rtp_session, interval, remote_rtcp_port, a_engine->rtcp_mux > 0);
|
switch_rtp_activate_rtcp(a_engine->rtp_session, interval, remote_rtcp_port, a_engine->rtcp_mux > 0);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -199,7 +199,7 @@ SWITCH_DECLARE(switch_status_t) switch_ivr_dmachine_set_terminators(switch_ivr_d
|
|||||||
|
|
||||||
|
|
||||||
dmachine->realm->terminators = switch_core_strdup(dmachine->pool, terminators);
|
dmachine->realm->terminators = switch_core_strdup(dmachine->pool, terminators);
|
||||||
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_INFO, "Digit parser %s: Setting terminators for realm '%s' to '%s'\n",
|
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "Digit parser %s: Setting terminators for realm '%s' to '%s'\n",
|
||||||
dmachine->name, dmachine->realm->name, terminators);
|
dmachine->name, dmachine->realm->name, terminators);
|
||||||
|
|
||||||
return SWITCH_STATUS_SUCCESS;
|
return SWITCH_STATUS_SUCCESS;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user