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() {}