diff --git a/src/mod/applications/mod_av/avformat.c b/src/mod/applications/mod_av/avformat.c index 0723ad9d5d..6b959eb068 100644 --- a/src/mod/applications/mod_av/avformat.c +++ b/src/mod/applications/mod_av/avformat.c @@ -1366,7 +1366,7 @@ static switch_status_t av_file_open(switch_file_handle_t *handle, const char *pa switch_mutex_init(&context->mutex, SWITCH_MUTEX_NESTED, handle->memory_pool); switch_core_timer_init(&context->timer, "soft", 1, 1000, context->pool); - switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_INFO, "init timer\n"); + switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "init timer\n"); switch_buffer_create_dynamic(&context->audio_buffer, 512, 512, 0); @@ -1476,7 +1476,7 @@ static switch_status_t av_file_open(switch_file_handle_t *handle, const char *pa desc = avcodec_descriptor_get(fmt->video_codec); - switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_INFO, "use video codec: [%d] %s (%s)\n", fmt->video_codec, desc->name, desc->long_name); + switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "use video codec: [%d] %s (%s)\n", fmt->video_codec, desc->name, desc->long_name); } if (fmt->audio_codec != AV_CODEC_ID_NONE) { diff --git a/src/switch_core_media.c b/src/switch_core_media.c index f015575533..128fb1d6be 100644 --- a/src/switch_core_media.c +++ b/src/switch_core_media.c @@ -1986,7 +1986,7 @@ static void check_jb_sync(switch_core_session_t *session) jb_sync_msec, frames, fps); } else { switch_log_printf(SWITCH_CHANNEL_SESSION_LOG(session), - SWITCH_LOG_INFO, "%s Sync Audio and Video Jitterbuffer to %dms %u Video Frames FPS %u\n", + SWITCH_LOG_DEBUG, "%s Sync Audio and Video Jitterbuffer to %dms %u Video Frames FPS %u\n", switch_channel_get_name(session->channel), jb_sync_msec, frames, fps); diff --git a/src/switch_rtp.c b/src/switch_rtp.c index e573cc1d5f..0dd1e0c880 100644 --- a/src/switch_rtp.c +++ b/src/switch_rtp.c @@ -1800,7 +1800,7 @@ static int rtcp_stats(switch_rtp_t *rtp_session) if (seq_diff < MAX_DROPOUT) { /* in order, with permissible gap */ if (pkt_seq < max_seq) { stats->cycle++; - switch_log_printf(SWITCH_CHANNEL_SESSION_LOG(session), SWITCH_LOG_NOTICE, "rtcp_stats:[cycle change] pkt_seq[%d] cycle[%d] max_seq[%d] stats_ssrc[%u] local_ts[%u]\n", + switch_log_printf(SWITCH_CHANNEL_SESSION_LOG(session), SWITCH_LOG_DEBUG, "rtcp_stats:[cycle change] pkt_seq[%d] cycle[%d] max_seq[%d] stats_ssrc[%u] local_ts[%u]\n", pkt_seq, stats->cycle, max_seq, stats->ssrc, rtp_session->timer.samplecount); } pkt_extended_seq = stats->cycle << 16 | pkt_seq; /* getting the extended packet extended sequence ID */