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

Unified Diff: net/quic/congestion_control/channel_estimator.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
« no previous file with comments | « no previous file | net/quic/congestion_control/cubic.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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.
« no previous file with comments | « no previous file | net/quic/congestion_control/cubic.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698