From 8bd8c1146d93a7783fb02275fd6d4fc435c9af5b Mon Sep 17 00:00:00 2001 From: winlin Date: Wed, 28 Sep 2022 17:46:50 +0800 Subject: [PATCH] WebRTC: Eliminate unused debugging log. --- trunk/src/app/srs_app_rtc_source.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trunk/src/app/srs_app_rtc_source.cpp b/trunk/src/app/srs_app_rtc_source.cpp index aa00a4d39..26e6ee69a 100644 --- a/trunk/src/app/srs_app_rtc_source.cpp +++ b/trunk/src/app/srs_app_rtc_source.cpp @@ -2663,7 +2663,7 @@ void SrsRtcSendTrack::rebuild_packet(SrsRtpPacket* pkt) uint32_t ts = pkt->header.get_timestamp(); pkt->header.set_timestamp(jitter_ts_->correct(ts)); - srs_warn("RTC: Correct %s seq=%u/%u, ts=%u/%u", track_desc_->type_.c_str(), seq, pkt->header.get_sequence(), ts, pkt->header.get_timestamp()); + srs_info("RTC: Correct %s seq=%u/%u, ts=%u/%u", track_desc_->type_.c_str(), seq, pkt->header.get_sequence(), ts, pkt->header.get_timestamp()); } srs_error_t SrsRtcSendTrack::on_nack(SrsRtpPacket** ppkt)