| Index: net/quic/congestion_control/quic_congestion_manager.cc
 | 
| diff --git a/net/quic/congestion_control/quic_congestion_manager.cc b/net/quic/congestion_control/quic_congestion_manager.cc
 | 
| index c292fe7a06055e2cce5670581901e7dacc0e3a54..8f688394b3147b3fc4f3fa6543e8def3fc807dae 100644
 | 
| --- a/net/quic/congestion_control/quic_congestion_manager.cc
 | 
| +++ b/net/quic/congestion_control/quic_congestion_manager.cc
 | 
| @@ -74,7 +74,7 @@ void QuicCongestionManager::SetFromConfig(const QuicConfig& config,
 | 
|    if (config.initial_round_trip_time_us() > 0 &&
 | 
|        rtt_sample_.IsInfinite()) {
 | 
|      // The initial rtt should already be set on the client side.
 | 
| -    DLOG_IF(INFO, !is_server)
 | 
| +    DVLOG_IF(0, !is_server)
 | 
|          << "Client did not set an initial RTT, but did negotiate one.";
 | 
|      rtt_sample_ =
 | 
|          QuicTime::Delta::FromMicroseconds(config.initial_round_trip_time_us());
 | 
| 
 |