| Index: net/quic/core/congestion_control/bbr_sender_test.cc | 
| diff --git a/net/quic/core/congestion_control/bbr_sender_test.cc b/net/quic/core/congestion_control/bbr_sender_test.cc | 
| index b4ffa584116dc8c6269d2ad391cde7201ed33517..c02fb7160c3c5653aed503ad2f7430d9e142eead 100644 | 
| --- a/net/quic/core/congestion_control/bbr_sender_test.cc | 
| +++ b/net/quic/core/congestion_control/bbr_sender_test.cc | 
| @@ -95,7 +95,7 @@ class BbrSenderTest : public ::testing::Test { | 
|  | 
| uint64_t seed = QuicRandom::GetInstance()->RandUint64(); | 
| random_.set_seed(seed); | 
| -    LOG(INFO) << "BbrSenderTest simulator set up.  Seed: " << seed; | 
| +    VLOG(1) << "BbrSenderTest simulator set up.  Seed: " << seed; | 
| } | 
|  | 
| simulator::Simulator simulator_; | 
| @@ -146,7 +146,7 @@ class BbrSenderTest : public ::testing::Test { | 
| EXPECT_TRUE(simulator_result) | 
| << "Simple transfer failed.  Bytes remaining: " | 
| << bbr_sender_.bytes_to_transfer(); | 
| -    LOG(INFO) << "Simple transfer state: " << sender_->ExportDebugState(); | 
| +    VLOG(1) << "Simple transfer state: " << sender_->ExportDebugState(); | 
| } | 
|  | 
| // Drive the simulator by sending enough data to enter PROBE_BW. | 
|  |