Reduce logging verbosity of DTLS-SRTP RTCP transport

since that transport is unset most of the time when rtcp-mux is used.

BUG=None

Change-Id: Ic1d732369c5544059112173af767488aed7ec8e5
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/316926
Reviewed-by: Harald Alvestrand <hta@webrtc.org>
Reviewed-by: Florent Castelli <orphis@webrtc.org>
Commit-Queue: Philipp Hancke <phancke@microsoft.com>
Cr-Commit-Position: refs/heads/main@{#40598}
This commit is contained in:
Philipp Hancke 2023-08-22 11:08:32 +02:00 committed by WebRTC LUCI CQ
parent 6b7bbe2e33
commit 179cec2be0

View file

@ -61,8 +61,10 @@ void DtlsSrtpTransport::SetDtlsTransports(
"should never happen."; "should never happen.";
} }
RTC_LOG(LS_INFO) << "Setting RTCP Transport on " << transport_name if (rtcp_dtls_transport) {
<< " transport " << rtcp_dtls_transport; RTC_LOG(LS_INFO) << "Setting RTCP Transport on " << transport_name
<< " transport " << rtcp_dtls_transport;
}
SetRtcpDtlsTransport(rtcp_dtls_transport); SetRtcpDtlsTransport(rtcp_dtls_transport);
SetRtcpPacketTransport(rtcp_dtls_transport); SetRtcpPacketTransport(rtcp_dtls_transport);