Improve trendline estimator logging.

Bug: None
Change-Id: I7cc6dc7f45ddb7325252516490436bea1ec8d250
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/153521
Reviewed-by: Sebastian Jansson <srte@webrtc.org>
Commit-Queue: Björn Terelius <terelius@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#29231}
This commit is contained in:
Björn Terelius 2019-09-18 16:59:26 +02:00 committed by Commit Bot
parent 693bf1eea1
commit 489843f1b1

View File

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