Update log level in network.cc to avoid excessive log printing

Bug: webrtc:14334
Change-Id: I034a7db47b5af14fb437d7370331cdadfed0c1a1
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/304021
Reviewed-by: Mirko Bonadei <mbonadei@webrtc.org>
Commit-Queue: Diep Bui <diepbp@webrtc.org>
Cr-Commit-Position: refs/heads/main@{#39973}
This commit is contained in:
Diep Bui 2023-05-02 12:22:00 +00:00 committed by WebRTC LUCI CQ
parent b1a174041d
commit 41daa40203

View File

@ -154,7 +154,7 @@ bool IsIgnoredIPv6(bool allow_mac_based_ipv6, const InterfaceAddress& ip) {
// However, our IPAddress structure doesn't carry that so the // However, our IPAddress structure doesn't carry that so the
// information is lost and causes binding failure. // information is lost and causes binding failure.
if (IPIsLinkLocal(ip)) { if (IPIsLinkLocal(ip)) {
RTC_LOG(LS_INFO) << "Ignore link local IP:" << ip.ToSensitiveString(); RTC_LOG(LS_VERBOSE) << "Ignore link local IP:" << ip.ToSensitiveString();
return true; return true;
} }