| Index: net/quic/congestion_control/cubic.cc
|
| diff --git a/net/quic/congestion_control/cubic.cc b/net/quic/congestion_control/cubic.cc
|
| index 16bfd1b58a2b220a974d29b9f652f983ea702992..ae6c58b7139e4d0a87e9b3ee745c0a1e449a0bd8 100644
|
| --- a/net/quic/congestion_control/cubic.cc
|
| +++ b/net/quic/congestion_control/cubic.cc
|
| @@ -149,7 +149,7 @@ QuicTcpCongestionWindow Cubic::CongestionWindowAfterAck(
|
|
|
| if (!epoch_.IsInitialized()) {
|
| // First ACK after a loss event.
|
| - DLOG(INFO) << "Start of epoch";
|
| + DVLOG(1) << "Start of epoch";
|
| epoch_ = current_time; // Start of epoch.
|
| acked_packets_count_ = 1; // Reset count.
|
| // Reset estimated_tcp_congestion_window_ to be in sync with cubic.
|
| @@ -193,7 +193,7 @@ QuicTcpCongestionWindow Cubic::CongestionWindowAfterAck(
|
| if (target_congestion_window < estimated_tcp_congestion_window_) {
|
| target_congestion_window = estimated_tcp_congestion_window_;
|
| }
|
| - DLOG(INFO) << "Target congestion_window:" << target_congestion_window;
|
| + DVLOG(1) << "Target congestion_window:" << target_congestion_window;
|
| return target_congestion_window;
|
| }
|
|
|
|
|