diff --git a/p2p/base/connection.cc b/p2p/base/connection.cc index f49c02234f..a79a449cff 100644 --- a/p2p/base/connection.cc +++ b/p2p/base/connection.cc @@ -483,9 +483,10 @@ void Connection::OnReadPacket(const char* data, case StunMessage::IntegrityStatus::kIntegrityOk: if (remote_candidate().password() != msg->password()) { // TODO(bugs.webrtc.org/14578): Do a better thing - RTC_LOG(LS_INFO) << "STUN code error - Different passwords, old = " - << absl::CHexEscape(msg->password()) << ", new " - << absl::CHexEscape(remote_candidate().password()); + RTC_DLOG(LS_VERBOSE) + << "STUN code error - Different passwords, old = " + << absl::CHexEscape(msg->password()) << ", new " + << absl::CHexEscape(remote_candidate().password()); } break; default: