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

Unified Diff: net/quic/congestion_control/hybrid_slow_start.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/hybrid_slow_start.cc
diff --git a/net/quic/congestion_control/hybrid_slow_start.cc b/net/quic/congestion_control/hybrid_slow_start.cc
index d6edba83855b529a103d549c3414b363cd04b50c..0edb10e86ea092024941e9821cd6358d93708e11 100644
--- a/net/quic/congestion_control/hybrid_slow_start.cc
+++ b/net/quic/congestion_control/hybrid_slow_start.cc
@@ -34,7 +34,7 @@ void HybridSlowStart::Restart() {
}
void HybridSlowStart::Reset(QuicPacketSequenceNumber end_sequence_number) {
- DLOG(INFO) << "Reset hybrid slow start @" << end_sequence_number;
+ DVLOG(1) << "Reset hybrid slow start @" << end_sequence_number;
round_start_ = last_time_ = clock_->ApproximateNow();
end_sequence_number_ = end_sequence_number;
current_rtt_ = QuicTime::Delta::Zero();
« no previous file with comments | « net/quic/congestion_control/fix_rate_sender.cc ('k') | net/quic/congestion_control/inter_arrival_bitrate_ramp_up.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698