| Index: net/quic/core/congestion_control/tcp_cubic_sender_bytes_test.cc
|
| diff --git a/net/quic/core/congestion_control/tcp_cubic_sender_bytes_test.cc b/net/quic/core/congestion_control/tcp_cubic_sender_bytes_test.cc
|
| index 8c400123211f6db93c15841c6a505b55f7837ac6..7c265e17324211c33c6b9f306a03af34c172dda6 100644
|
| --- a/net/quic/core/congestion_control/tcp_cubic_sender_bytes_test.cc
|
| +++ b/net/quic/core/congestion_control/tcp_cubic_sender_bytes_test.cc
|
| @@ -8,13 +8,13 @@
|
| #include <cstdint>
|
| #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/crypto/crypto_protocol.h"
|
| #include "net/quic/core/proto/cached_network_parameters.pb.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 "testing/gtest/include/gtest/gtest.h"
|
| @@ -209,7 +209,7 @@ TEST_F(TcpCubicSenderBytesTest, SlowStartPacketLoss) {
|
| // Recovery phase. We need to ack every packet in the recovery window before
|
| // we exit recovery.
|
| size_t number_of_packets_in_window = expected_send_window / kDefaultTCPMSS;
|
| - DVLOG(1) << "number_packets: " << number_of_packets_in_window;
|
| + QUIC_DLOG(INFO) << "number_packets: " << number_of_packets_in_window;
|
| AckNPackets(packets_in_recovery_window);
|
| SendAvailableSendWindow();
|
| EXPECT_EQ(expected_send_window, sender_->GetCongestionWindow());
|
| @@ -271,7 +271,7 @@ TEST_F(TcpCubicSenderBytesTest, SlowStartPacketLossWithLargeReduction) {
|
| // Recovery phase. We need to ack every packet in the recovery window before
|
| // we exit recovery.
|
| size_t number_of_packets_in_window = expected_send_window / kDefaultTCPMSS;
|
| - DVLOG(1) << "number_packets: " << number_of_packets_in_window;
|
| + QUIC_DLOG(INFO) << "number_packets: " << number_of_packets_in_window;
|
| AckNPackets(packets_in_recovery_window);
|
| SendAvailableSendWindow();
|
| EXPECT_EQ(expected_send_window, sender_->GetCongestionWindow());
|
|
|