| Index: net/quic/core/congestion_control/pacing_sender_test.cc
|
| diff --git a/net/quic/core/congestion_control/pacing_sender_test.cc b/net/quic/core/congestion_control/pacing_sender_test.cc
|
| index 7fc3019d0fd690967905ef37a49c3e545b99970d..68a31febf168f484636c134e8b7247c162434d40 100644
|
| --- a/net/quic/core/congestion_control/pacing_sender_test.cc
|
| +++ b/net/quic/core/congestion_control/pacing_sender_test.cc
|
| @@ -6,8 +6,8 @@
|
|
|
| #include <memory>
|
|
|
| +#include "base/logging.h"
|
| #include "net/quic/core/quic_packets.h"
|
| -#include "net/quic/platform/api/quic_logging.h"
|
| #include "net/quic/test_tools/mock_clock.h"
|
| #include "net/quic/test_tools/quic_test_utils.h"
|
| #include "testing/gtest/include/gtest/gtest.h"
|
| @@ -50,9 +50,9 @@
|
| pacing_sender_->OnCongestionEvent(true, 1234, clock_.Now(), empty,
|
| lost_packets);
|
| } else if (burst_size != kInitialBurstPackets) {
|
| - QUIC_LOG(FATAL) << "Unsupported burst_size " << burst_size
|
| - << " specificied, only 0 and " << kInitialBurstPackets
|
| - << " are supported.";
|
| + LOG(FATAL) << "Unsupported burst_size " << burst_size
|
| + << " specificied, only 0 and " << kInitialBurstPackets
|
| + << " are supported.";
|
| }
|
| }
|
|
|
|
|