From 489843f1b166017938d20190970ee061a8b82974 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Terelius?= Date: Wed, 18 Sep 2019 16:59:26 +0200 Subject: [PATCH] Improve trendline estimator logging. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bug: None Change-Id: I7cc6dc7f45ddb7325252516490436bea1ec8d250 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/153521 Reviewed-by: Sebastian Jansson Commit-Queue: Björn Terelius Cr-Commit-Position: refs/heads/master@{#29231} --- .../congestion_controller/goog_cc/trendline_estimator.cc | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/modules/congestion_controller/goog_cc/trendline_estimator.cc b/modules/congestion_controller/goog_cc/trendline_estimator.cc index d95ab0c858..130acbfe85 100644 --- a/modules/congestion_controller/goog_cc/trendline_estimator.cc +++ b/modules/congestion_controller/goog_cc/trendline_estimator.cc @@ -129,8 +129,10 @@ TrendlineEstimator::TrendlineEstimator( network_state_predictor_(network_state_predictor) { RTC_LOG(LS_INFO) << "Using Trendline filter for delay change estimation with window size " - << window_size_ << " and field trial " - << ignore_small_packets_.Parser()->Encode(); + << window_size_ << ", field trial " + << ignore_small_packets_.Parser()->Encode() << " and " + << (network_state_predictor_ ? "injected" : "no") + << " network state predictor"; } TrendlineEstimator::~TrendlineEstimator() {}