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 <orphis@webrtc.org>
Commit-Queue: Victor Boivie <boivie@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#33912}
This commit is contained in:
Victor Boivie 2021-05-01 19:08:43 +02:00 committed by WebRTC LUCI CQ
parent 1e78e95de5
commit 3371638229

View File

@ -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;
}