]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
FS-7500: [rtp] up debug to higher level
authorAnthony Minessale <anthm@freeswitch.org>
Wed, 20 May 2015 18:14:55 +0000 (13:14 -0500)
committerMichael Jerris <mike@jerris.com>
Thu, 28 May 2015 17:47:33 +0000 (12:47 -0500)
src/switch_rtp.c

index cd689e25738436d2ca902c7e499c7cece36c9e65..eb8bfed5ee15a038b0e57fc3ecfb49a396c1be4f 100644 (file)
@@ -6850,13 +6850,13 @@ static int rtp_write_ready(switch_rtp_t *rtp_session, uint32_t bytes, int line)
        if (!rtp_session) return 0;
        
        if (rtp_session->ice.ice_user && !(rtp_session->ice.rready && rtp_session->ice.ready)) {
-               switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG1, "Skip sending %s packet %ld bytes (ice not ready @ line %d!)\n", 
+               switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG3, "Skip sending %s packet %ld bytes (ice not ready @ line %d!)\n", 
                                                  rtp_type(rtp_session), (long)bytes, line);
                return 0;
        }
 
        if (rtp_session->dtls && rtp_session->dtls->state != DS_READY) {
-               switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG1, "Skip sending %s packet %ld bytes (dtls not ready @ line %d!)\n", 
+               switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG3, "Skip sending %s packet %ld bytes (dtls not ready @ line %d!)\n", 
                                                  rtp_type(rtp_session), (long)bytes, line);
                return 0;
        }