From 41daa402030cd9173a0ab8c3b5ad74b4b83f8043 Mon Sep 17 00:00:00 2001 From: Diep Bui Date: Tue, 2 May 2023 12:22:00 +0000 Subject: [PATCH] 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 Commit-Queue: Diep Bui Cr-Commit-Position: refs/heads/main@{#39973} --- rtc_base/network.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rtc_base/network.cc b/rtc_base/network.cc index 6279f7f0ea..a59574303d 100644 --- a/rtc_base/network.cc +++ b/rtc_base/network.cc @@ -154,7 +154,7 @@ bool IsIgnoredIPv6(bool allow_mac_based_ipv6, const InterfaceAddress& ip) { // However, our IPAddress structure doesn't carry that so the // information is lost and causes binding failure. 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; }