| Index: net/quic/congestion_control/channel_estimator.cc
|
| diff --git a/net/quic/congestion_control/channel_estimator.cc b/net/quic/congestion_control/channel_estimator.cc
|
| index 54b96ae4e18b7affe37f2d5c88f2ca7bf92a490f..a012b666a39ce860fbd2dd1ac1da4dc1223ceb27 100644
|
| --- a/net/quic/congestion_control/channel_estimator.cc
|
| +++ b/net/quic/congestion_control/channel_estimator.cc
|
| @@ -38,7 +38,7 @@ void ChannelEstimator::OnAcknowledgedPacket(
|
| return;
|
| }
|
| if (last_sequence_number_ != sequence_number - 1) {
|
| - DLOG(INFO) << "Skip channel estimator due to lost packet(s)";
|
| + DVLOG(1) << "Skip channel estimator due to lost packet(s)";
|
| } else if (last_send_time_.IsInitialized()) {
|
| QuicTime::Delta sent_delta = send_time.Subtract(last_send_time_);
|
| QuicTime::Delta received_delta = receive_time.Subtract(last_receive_time_);
|
| @@ -88,7 +88,7 @@ ChannelEstimateState ChannelEstimator::GetChannelEstimate(
|
| }
|
| }
|
| *estimate = median_bitrate;
|
| - DLOG(INFO) << "Channel estimate is:"
|
| + DVLOG(1) << "Channel estimate is:"
|
| << median_bitrate.ToKBitsPerSecond() << " Kbit/s";
|
| // If the bitrates in our 25th to 75th percentile window varies more than
|
| // 25% of the median bitrate we consider the estimate to be uncertain.
|
|
|