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 <stefan@webrtc.org>
Commit-Queue: Niels Moller <nisse@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#27865}
This commit is contained in:
Niels Möller
2019-05-07 14:56:33 +02:00
committed by Commit Bot
parent f65a89b7f7
commit 2154f751e3

View File

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