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

Unified Diff: net/quic/core/congestion_control/hybrid_slow_start.cc

Issue 2611613003: Add quic_logging (Closed)
Patch Set: fix failed test? Created 3 years, 11 months 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/core/congestion_control/hybrid_slow_start.cc
diff --git a/net/quic/core/congestion_control/hybrid_slow_start.cc b/net/quic/core/congestion_control/hybrid_slow_start.cc
index 7cac328bd270aaa3fb94956ed9808c7accd90b72..74364cc427ca6667407989fea6e07d781ca3b00a 100644
--- a/net/quic/core/congestion_control/hybrid_slow_start.cc
+++ b/net/quic/core/congestion_control/hybrid_slow_start.cc
@@ -6,6 +6,8 @@
#include <algorithm>
+#include "net/quic/platform/api/quic_logging.h"
+
namespace net {
// Note(pwestin): the magic clamping numbers come from the original code in
@@ -46,7 +48,7 @@ void HybridSlowStart::Restart() {
}
void HybridSlowStart::StartReceiveRound(QuicPacketNumber last_sent) {
- DVLOG(1) << "Reset hybrid slow start @" << last_sent;
+ QUIC_DVLOG(1) << "Reset hybrid slow start @" << last_sent;
end_packet_number_ = last_sent;
current_min_rtt_ = QuicTime::Delta::Zero();
rtt_sample_count_ = 0;

Powered by Google App Engine
This is Rietveld 408576698