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 <philipp.hancke@googlemail.com>
Reviewed-by: Harald Alvestrand <hta@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#32802}
This commit is contained in:
Philipp Hancke
2020-12-08 14:00:37 +01:00
committed by Commit Bot
parent 992a96f68e
commit df9245c09a

View File

@ -3280,12 +3280,12 @@ bool ParseContent(const std::string& message,
continue; continue;
} else { } else {
// Unrecognized attribute in RTP protocol. // Unrecognized attribute in RTP protocol.
RTC_LOG(LS_INFO) << "Ignored line: " << line; RTC_LOG(LS_VERBOSE) << "Ignored line: " << line;
continue; continue;
} }
} else { } else {
// Only parse lines that we are interested of. // Only parse lines that we are interested of.
RTC_LOG(LS_INFO) << "Ignored line: " << line; RTC_LOG(LS_VERBOSE) << "Ignored line: " << line;
continue; continue;
} }
} }