| 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 adbaa18b81805515ac5d7799fe171b4393d485d0..08026e7896d030901dce0f480aaaf56e23893dce 100644
|
| --- a/net/quic/core/congestion_control/bbr_sender_test.cc
|
| +++ b/net/quic/core/congestion_control/bbr_sender_test.cc
|
| @@ -8,10 +8,10 @@
|
| #include <map>
|
| #include <memory>
|
|
|
| +#include "base/logging.h"
|
| #include "net/quic/core/congestion_control/rtt_stats.h"
|
| #include "net/quic/core/quic_packets.h"
|
| #include "net/quic/core/quic_utils.h"
|
| -#include "net/quic/platform/api/quic_logging.h"
|
| #include "net/quic/test_tools/mock_clock.h"
|
| #include "net/quic/test_tools/quic_config_peer.h"
|
| #include "net/quic/test_tools/quic_connection_peer.h"
|
| @@ -95,7 +95,7 @@
|
|
|
| uint64_t seed = QuicRandom::GetInstance()->RandUint64();
|
| random_.set_seed(seed);
|
| - QUIC_LOG(INFO) << "BbrSenderTest simulator set up. Seed: " << seed;
|
| + VLOG(1) << "BbrSenderTest simulator set up. Seed: " << seed;
|
| }
|
|
|
| simulator::Simulator simulator_;
|
| @@ -146,7 +146,7 @@
|
| EXPECT_TRUE(simulator_result)
|
| << "Simple transfer failed. Bytes remaining: "
|
| << bbr_sender_.bytes_to_transfer();
|
| - QUIC_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.
|
|
|