From 3872873889383f15deee8a8f9f5e86a116a409ce Mon Sep 17 00:00:00 2001 From: Marina Ciocea Date: Wed, 29 Jul 2020 10:15:46 +0200 Subject: [PATCH] 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 Commit-Queue: Marina Ciocea Cr-Commit-Position: refs/heads/master@{#31803} --- pc/channel.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pc/channel.cc b/pc/channel.cc index e7f62c6aa6..eeba19b2c1 100644 --- a/pc/channel.cc +++ b/pc/channel.cc @@ -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.