Reduce severity of BWE start bitrate log to INFO.

Bug: None
Change-Id: I0fb0a441a1851f1a9b16d7c466e91b025416e6d5
Reviewed-on: https://webrtc-review.googlesource.com/55382
Reviewed-by: Magnus Flodman <mflodman@webrtc.org>
Commit-Queue: Stefan Holmer <stefan@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#22098}
This commit is contained in:
Stefan Holmer 2018-02-20 11:33:37 +01:00 committed by Commit Bot
parent 694a36fbce
commit 645898a454

View File

@ -310,7 +310,7 @@ bool DelayBasedBwe::LatestEstimate(std::vector<uint32_t>* ssrcs,
}
void DelayBasedBwe::SetStartBitrate(int start_bitrate_bps) {
RTC_LOG(LS_WARNING) << "BWE Setting start bitrate to: " << start_bitrate_bps;
RTC_LOG(LS_INFO) << "BWE Setting start bitrate to: " << start_bitrate_bps;
rate_control_.SetStartBitrate(start_bitrate_bps);
}