]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
FS-7499: demote log line
authorAnthony Minessale <anthm@freeswitch.org>
Thu, 9 Apr 2015 20:52:18 +0000 (15:52 -0500)
committerMichael Jerris <mike@jerris.com>
Thu, 28 May 2015 17:47:18 +0000 (12:47 -0500)
src/switch_rtp.c

index 08ec41313ae64f40518f3a4ad3d96efa2d4f4263..40141098a5baad7549a390ce1a996fc484bad65f 100644 (file)
@@ -5368,7 +5368,7 @@ static switch_status_t process_rtcp_report(switch_rtp_t *rtp_session, rtcp_msg_t
                        uint32_t *nack = (uint32_t *) extp->body;
                        int i;
                        
-                       switch_log_printf(SWITCH_CHANNEL_SESSION_LOG(rtp_session->session), SWITCH_LOG_DEBUG, "Got NACK count %d\n", ntohs(extp->header.length) - 2);
+                       switch_log_printf(SWITCH_CHANNEL_SESSION_LOG(rtp_session->session), SWITCH_LOG_DEBUG1, "Got NACK count %d\n", ntohs(extp->header.length) - 2);
                        switch_core_media_gen_key_frame(rtp_session->session);
                        for (i = 0; i < ntohs(extp->header.length) - 2; i++) {
                                handle_nack(rtp_session, *nack);