| Index: net/quic/core/congestion_control/send_algorithm_test.cc
|
| diff --git a/net/quic/core/congestion_control/send_algorithm_test.cc b/net/quic/core/congestion_control/send_algorithm_test.cc
|
| index c8ee3e5525901961815a463b2118e051ecbdf153..f93100a7ddf22e3d8411172f13a4822d0db3b7c0 100644
|
| --- a/net/quic/core/congestion_control/send_algorithm_test.cc
|
| +++ b/net/quic/core/congestion_control/send_algorithm_test.cc
|
| @@ -6,11 +6,11 @@
|
| #include <map>
|
| #include <memory>
|
|
|
| +#include "base/logging.h"
|
| #include "net/quic/core/congestion_control/rtt_stats.h"
|
| #include "net/quic/core/congestion_control/send_algorithm_interface.h"
|
| #include "net/quic/core/quic_types.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"
|
| @@ -110,7 +110,7 @@
|
| case kBBR:
|
| return "BBR";
|
| default:
|
| - QUIC_DLOG(FATAL) << "Unexpected CongestionControlType";
|
| + DLOG(FATAL) << "Unexpected CongestionControlType";
|
| return nullptr;
|
| }
|
| }
|
| @@ -178,7 +178,7 @@
|
|
|
| uint64_t seed = QuicRandom::GetInstance()->RandUint64();
|
| random_.set_seed(seed);
|
| - QUIC_LOG(INFO) << "SendAlgorithmTest simulator set up. Seed: " << seed;
|
| + VLOG(1) << "SendAlgorithmTest simulator set up. Seed: " << seed;
|
| }
|
|
|
| // Sets experimental options in the server config, as if they had
|
| @@ -265,14 +265,14 @@
|
|
|
| void PrintTransferStats() {
|
| const QuicConnectionStats& stats = quic_sender_.connection()->GetStats();
|
| - QUIC_LOG(INFO) << "Summary for scenario " << GetParam();
|
| - QUIC_LOG(INFO) << "Sender stats is " << stats;
|
| + VLOG(1) << "Summary for scenario " << GetParam();
|
| + VLOG(1) << "Sender stats is " << stats;
|
| const double rtx_rate =
|
| static_cast<double>(stats.bytes_retransmitted) / stats.bytes_sent;
|
| - QUIC_LOG(INFO) << "Retransmit rate (num_rtx/num_total_sent): " << rtx_rate;
|
| - QUIC_LOG(INFO) << "Connection elapsed time: "
|
| - << (clock_->Now() - QuicSenderStartTime()).ToMilliseconds()
|
| - << " (ms)";
|
| + VLOG(1) << "Retransmit rate (num_rtx/num_total_sent): " << rtx_rate;
|
| + VLOG(1) << "Connection elapsed time: "
|
| + << (clock_->Now() - QuicSenderStartTime()).ToMilliseconds()
|
| + << " (ms)";
|
| }
|
|
|
| simulator::Simulator simulator_;
|
|
|