From 337163822955431120f69c3f6096ab26a7e9539f Mon Sep 17 00:00:00 2001 From: Victor Boivie Date: Sat, 1 May 2021 19:08:43 +0200 Subject: [PATCH] dcsctp: Use correct log severity As INFO is aliased to LS_INFO, this didn't trigger any warnings or compilation errors. Bug: None Change-Id: I1ed30c435d9ee6ea1b51d85a375d70135d3475e6 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/216689 Reviewed-by: Florent Castelli Commit-Queue: Victor Boivie Cr-Commit-Position: refs/heads/master@{#33912} --- net/dcsctp/tx/retransmission_error_counter.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/net/dcsctp/tx/retransmission_error_counter.cc b/net/dcsctp/tx/retransmission_error_counter.cc index f97e8cb117..111b6efe96 100644 --- a/net/dcsctp/tx/retransmission_error_counter.cc +++ b/net/dcsctp/tx/retransmission_error_counter.cc @@ -16,8 +16,8 @@ namespace dcsctp { bool RetransmissionErrorCounter::Increment(absl::string_view reason) { ++counter_; if (counter_ > limit_) { - RTC_DLOG(INFO) << log_prefix_ << reason - << ", too many retransmissions, counter=" << counter_; + RTC_DLOG(LS_INFO) << log_prefix_ << reason + << ", too many retransmissions, counter=" << counter_; return false; }