Index: net/quic/congestion_control/inter_arrival_bitrate_ramp_up.cc |
diff --git a/net/quic/congestion_control/inter_arrival_bitrate_ramp_up.cc b/net/quic/congestion_control/inter_arrival_bitrate_ramp_up.cc |
index 2327c5cf9dc3dc784747bc2049b303b67de89f02..2438493cc0bfd05b65f0de0a6dcf59b05ef49c59 100644 |
--- a/net/quic/congestion_control/inter_arrival_bitrate_ramp_up.cc |
+++ b/net/quic/congestion_control/inter_arrival_bitrate_ramp_up.cc |
@@ -58,7 +58,7 @@ void InterArrivalBitrateRampUp::Reset(QuicBandwidth new_rate, |
new_rate.Subtract(available_channel_estimate_)); |
} |
current_rate_ = new_rate; |
- DLOG(INFO) << "Reset; time to origin point:" << time_to_origin_point_; |
+ DVLOG(1) << "Reset; time to origin point:" << time_to_origin_point_; |
} |
void InterArrivalBitrateRampUp::UpdateChannelEstimate( |
@@ -79,7 +79,7 @@ void InterArrivalBitrateRampUp::UpdateChannelEstimate( |
channel_estimate_ = channel_estimate; |
halfway_point_ = available_channel_estimate_.Add( |
(channel_estimate_.Subtract(available_channel_estimate_).Scale(0.5f))); |
- DLOG(INFO) << "UpdateChannelEstimate; first usable value:" |
+ DVLOG(1) << "UpdateChannelEstimate; first usable value:" |
<< channel_estimate.ToKBitsPerSecond() << " Kbits/s"; |
return; |
} |
@@ -97,7 +97,7 @@ void InterArrivalBitrateRampUp::UpdateChannelEstimate( |
time_to_origin_point_ = |
CalcuateTimeToOriginPoint(channel_estimate_.Subtract(current_rate_)); |
- DLOG(INFO) << "UpdateChannelEstimate; time to origin point:" |
+ DVLOG(1) << "UpdateChannelEstimate; time to origin point:" |
<< time_to_origin_point_; |
} |
@@ -119,7 +119,7 @@ QuicBandwidth InterArrivalBitrateRampUp::GetNewBitrate( |
// Don't go up in bitrate when we are not sending. |
// We need to update the epoch to reflect this state. |
epoch_ = epoch_.Add(time_from_last_update); |
- DLOG(INFO) << "Don't increase; our sent bitrate is:" |
+ DVLOG(1) << "Don't increase; our sent bitrate is:" |
<< sent_bitrate.ToKBitsPerSecond() << " Kbits/s" |
<< " current target rate is:" |
<< current_rate_.ToKBitsPerSecond() << " Kbits/s"; |
@@ -156,7 +156,7 @@ QuicBandwidth InterArrivalBitrateRampUp::GetNewBitrate( |
time_to_origin_point_ = |
CalcuateTimeToOriginPoint(channel_estimate_.Subtract(current_rate)); |
} |
- DLOG(INFO) << "Passed the halfway point; time to origin point:" |
+ DVLOG(1) << "Passed the halfway point; time to origin point:" |
<< time_to_origin_point_; |
} |
current_rate_ = current_rate; |