From 2154f751e3fa0f87cc9ad82dc393377e86ca28ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20M=C3=B6ller?= Date: Tue, 7 May 2019 14:56:33 +0200 Subject: [PATCH] Log transport feedback max interval To make it easy to see if field trial is in effect. Bug: None Change-Id: Id8369061b3222c762a4ea655f7177ce421d66a53 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/135463 Reviewed-by: Stefan Holmer Commit-Queue: Niels Moller Cr-Commit-Position: refs/heads/master@{#27865} --- modules/remote_bitrate_estimator/remote_estimator_proxy.cc | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/modules/remote_bitrate_estimator/remote_estimator_proxy.cc b/modules/remote_bitrate_estimator/remote_estimator_proxy.cc index bdfe648b06..50a724b89a 100644 --- a/modules/remote_bitrate_estimator/remote_estimator_proxy.cc +++ b/modules/remote_bitrate_estimator/remote_estimator_proxy.cc @@ -40,7 +40,11 @@ RemoteEstimatorProxy::RemoteEstimatorProxy( media_ssrc_(0), feedback_packet_count_(0), send_interval_ms_(send_config_.default_interval->ms()), - send_periodic_feedback_(true) {} + send_periodic_feedback_(true) { + RTC_LOG(LS_INFO) + << "Maximum interval between transport feedback RTCP messages (ms): " + << send_config_.max_interval->ms(); +} RemoteEstimatorProxy::~RemoteEstimatorProxy() {}