]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
change log levels to debug
authorMichael Jerris <mike@jerris.com>
Wed, 15 Jul 2015 16:50:36 +0000 (12:50 -0400)
committerMichael Jerris <mike@jerris.com>
Wed, 15 Jul 2015 16:50:36 +0000 (12:50 -0400)
src/mod/applications/mod_av/avformat.c
src/switch_core_media.c
src/switch_rtp.c

index 0723ad9d5dce67159b6e065b615277248d204b77..6b959eb0684b2481ee5675085e9580d63b38f31b 100644 (file)
@@ -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) {
index f01557553380e19ecf538046ea274fa0f125ab85..128fb1d6be9c8b09ddacb55a80f01818b3a7804a 100644 (file)
@@ -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);
                
index e573cc1d5f0a0a09bd8e2363fefa8c618ba0bac9..0dd1e0c880117028b6583dc23e410fc73090d3a6 100644 (file)
@@ -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 */