| Index: net/quic/congestion_control/inter_arrival_sender_test.cc
 | 
| diff --git a/net/quic/congestion_control/inter_arrival_sender_test.cc b/net/quic/congestion_control/inter_arrival_sender_test.cc
 | 
| index 1e1616343fb6d34026a8fc7fbcd6ce3b6a804e5f..f52005678f31b5305c822fe65287eabba905646a 100644
 | 
| --- a/net/quic/congestion_control/inter_arrival_sender_test.cc
 | 
| +++ b/net/quic/congestion_control/inter_arrival_sender_test.cc
 | 
| @@ -153,7 +153,7 @@ TEST_F(InterArrivalSenderTest, ProbeFollowedByFullRampUpCycle) {
 | 
|        acc_arrival_time.ToMicroseconds();
 | 
|    EXPECT_NEAR(0.7f * probe_rate,
 | 
|                sender_.BandwidthEstimate().ToBytesPerSecond(), 1000);
 | 
| -  DLOG(INFO) << "After probe";
 | 
| +  DVLOG(0) << "After probe";
 | 
|    // Send 50 bursts, make sure that we move fast in the beginning.
 | 
|    for (int i = 0; i < 50; ++i) {
 | 
|      SendAvailableCongestionWindow();
 | 
| @@ -198,7 +198,7 @@ TEST_F(InterArrivalSenderTest, ProbeFollowedByFullRampUpCycle) {
 | 
|    EXPECT_NEAR(0.99f * probe_rate,
 | 
|                sender_.BandwidthEstimate().ToBytesPerSecond(), 1000);
 | 
|    EXPECT_NEAR(SenderDeltaSinceStart().ToMilliseconds(), 1560, 10);
 | 
| -  DLOG(INFO) << "Near available channel estimate";
 | 
| +  DVLOG(0) << "Near available channel estimate";
 | 
|  
 | 
|    // Send 50 bursts, make sure that we move very slow close to the probe rate.
 | 
|    for (int i = 0; i < 50; ++i) {
 | 
| @@ -214,7 +214,7 @@ TEST_F(InterArrivalSenderTest, ProbeFollowedByFullRampUpCycle) {
 | 
|    EXPECT_NEAR(1.00f * probe_rate,
 | 
|                sender_.BandwidthEstimate().ToBytesPerSecond(), 2000);
 | 
|    EXPECT_NEAR(SenderDeltaSinceStart().ToMilliseconds(), 2000, 100);
 | 
| -  DLOG(INFO) << "At available channel estimate";
 | 
| +  DVLOG(0) << "At available channel estimate";
 | 
|  
 | 
|    // Send 50 bursts, make sure that we move very slow close to the probe rate.
 | 
|    for (int i = 0; i < 50; ++i) {
 | 
| @@ -280,7 +280,7 @@ TEST_F(InterArrivalSenderTest, ProbeFollowedByFullRampUpCycle) {
 | 
|    EXPECT_NEAR(halfway_rate,
 | 
|                sender_.BandwidthEstimate().ToBytesPerSecond(), 5000);
 | 
|    EXPECT_NEAR(SenderDeltaSinceStart().ToMilliseconds(), 6600, 100);
 | 
| -  DLOG(INFO) << "Near halfway point";
 | 
| +  DVLOG(0) << "Near halfway point";
 | 
|  
 | 
|    // Send until we reach max channel capacity.
 | 
|    for (int i = 0; i < 1500; ++i) {
 | 
| 
 |