From df9245c09af5d0fd3ee0c41101ef69b916fd25fb Mon Sep 17 00:00:00 2001 From: Philipp Hancke Date: Tue, 8 Dec 2020 14:00:37 +0100 Subject: [PATCH] sdp: log unhandled lines at LS_VERBOSE level for consistency with https://webrtc-review.googlesource.com/c/src/+/196526 Bug: None Change-Id: Iddeb5e1639444e855e61d10d13c7a741916b658e Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/196642 Commit-Queue: Philipp Hancke Reviewed-by: Harald Alvestrand Cr-Commit-Position: refs/heads/master@{#32802} --- pc/webrtc_sdp.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pc/webrtc_sdp.cc b/pc/webrtc_sdp.cc index 6f91d633fd..b500eb27f4 100644 --- a/pc/webrtc_sdp.cc +++ b/pc/webrtc_sdp.cc @@ -3280,12 +3280,12 @@ bool ParseContent(const std::string& message, continue; } else { // Unrecognized attribute in RTP protocol. - RTC_LOG(LS_INFO) << "Ignored line: " << line; + RTC_LOG(LS_VERBOSE) << "Ignored line: " << line; continue; } } else { // Only parse lines that we are interested of. - RTC_LOG(LS_INFO) << "Ignored line: " << line; + RTC_LOG(LS_VERBOSE) << "Ignored line: " << line; continue; } }