From b88fe025b72efa9886f9f72d2b9412a7a631d924 Mon Sep 17 00:00:00 2001 From: Sebastian Jansson Date: Fri, 5 Oct 2018 15:35:44 +0200 Subject: [PATCH] Removes logging spam from congestion window. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bug: webrtc:9830 Change-Id: I20c84b757de03f2bcc010b19f256297ca9722fa6 Reviewed-on: https://webrtc-review.googlesource.com/c/104066 Reviewed-by: Sami Kalliomäki Commit-Queue: Ying Wang Cr-Commit-Position: refs/heads/master@{#25022} --- .../send_side_congestion_controller.cc | 6 ------ 1 file changed, 6 deletions(-) diff --git a/modules/congestion_controller/send_side_congestion_controller.cc b/modules/congestion_controller/send_side_congestion_controller.cc index 2df610c7c8..f8b3155bf9 100644 --- a/modules/congestion_controller/send_side_congestion_controller.cc +++ b/modules/congestion_controller/send_side_congestion_controller.cc @@ -432,12 +432,6 @@ void SendSideCongestionController::LimitOutstandingBytes( std::max((*min_rtt_ms + accepted_queue_ms_) * last_reported_bitrate_bps_ / 1000 / 8, kMinCwndBytes); - RTC_LOG(LS_INFO) << clock_->TimeInMilliseconds() - << " Outstanding bytes: " << num_outstanding_bytes - << " pacer queue: " << pacer_->QueueInMs() - << " max outstanding: " << max_outstanding_bytes; - RTC_LOG(LS_INFO) << "Feedback rtt: " << *min_rtt_ms - << " Bitrate: " << last_reported_bitrate_bps_; if (congestion_window_pushback_controller_) { congestion_window_pushback_controller_->UpdateOutstandingData( num_outstanding_bytes);