Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1355)

Unified Diff: net/quic/congestion_control/inter_arrival_bitrate_ramp_up.cc

Issue 83123006: Conver DLOG(INFO) to DVLOG(1) in QUIC code. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix new messages Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;
« no previous file with comments | « net/quic/congestion_control/hybrid_slow_start.cc ('k') | net/quic/congestion_control/inter_arrival_overuse_detector.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698