diff --git a/webrtc/modules/bitrate_controller/send_side_bandwidth_estimation.cc b/webrtc/modules/bitrate_controller/send_side_bandwidth_estimation.cc index 036e04fc64..5da23f0662 100644 --- a/webrtc/modules/bitrate_controller/send_side_bandwidth_estimation.cc +++ b/webrtc/modules/bitrate_controller/send_side_bandwidth_estimation.cc @@ -12,7 +12,7 @@ #include -#include "webrtc/system_wrappers/interface/trace.h" +#include "webrtc/system_wrappers/interface/logging.h" namespace webrtc { namespace { @@ -203,13 +203,9 @@ void SendSideBandwidthEstimation::CapBitrateToThresholds() { bitrate_ = max_bitrate_configured_; } if (bitrate_ < min_bitrate_configured_) { - WEBRTC_TRACE(kTraceWarning, - kTraceRtpRtcp, - -1, - "The configured min bitrate (%u kbps) is greater than the " - "estimated available bandwidth (%u kbps).\n", - min_bitrate_configured_ / 1000, - bitrate_ / 1000); + LOG(LS_WARNING) << "Estimated available bandwidth " << bitrate_ / 1000 + << " kbps is below configured min bitrate " + << min_bitrate_configured_ / 1000 << " kbps."; bitrate_ = min_bitrate_configured_; } }