Reduce log level in BaseChannel::SendPacket.

This log line is causing test failures due to excessive logging (see
referenced bug); reducing log level.

Bug: chromium:984879
Change-Id: Ic94ba0a39b91b4253a58ad54de0cba1ca49882e2
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/175913
Reviewed-by: Harald Alvestrand <hta@webrtc.org>
Commit-Queue: Marina Ciocea <marinaciocea@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#31803}
This commit is contained in:
Marina Ciocea 2020-07-29 10:15:46 +02:00 committed by Commit Bot
parent 4c9c75a2a6
commit 3872873889

View File

@ -434,9 +434,9 @@ bool BaseChannel::SendPacket(bool rtcp,
}
std::string packet_type = rtcp ? "RTCP" : "RTP";
RTC_LOG(LS_WARNING) << "Sending an " << packet_type
<< " packet without encryption for " << ToString()
<< ".";
RTC_DLOG(LS_WARNING) << "Sending an " << packet_type
<< " packet without encryption for " << ToString()
<< ".";
}
// Bon voyage.