diff --git a/p2p/base/p2ptransportchannel.cc b/p2p/base/p2ptransportchannel.cc index 00f7388217..7aa305d6d3 100644 --- a/p2p/base/p2ptransportchannel.cc +++ b/p2p/base/p2ptransportchannel.cc @@ -711,9 +711,10 @@ void P2PTransportChannel::OnPortReady(PortAllocatorSession *session, ++it) { int val = port->SetOption(it->first, it->second); if (val < 0) { - RTC_LOG(LS_WARNING) << port->ToString() << ": SetOption(" - << it->first << ", " << it->second - << ") failed: " << port->GetError(); + // Errors are frequent, so use LS_INFO. bugs.webrtc.org/9221 + RTC_LOG(LS_INFO) << port->ToString() << ": SetOption(" << it->first + << ", " << it->second + << ") failed: " << port->GetError(); } }