| Index: net/tools/quic/quic_dispatcher_test.cc
|
| diff --git a/net/tools/quic/quic_dispatcher_test.cc b/net/tools/quic/quic_dispatcher_test.cc
|
| index e2d7c1b00160072765fd2eae3d2b5f9006bb9d2a..87382d91e88db61829e742e299e856fb745eeadb 100644
|
| --- a/net/tools/quic/quic_dispatcher_test.cc
|
| +++ b/net/tools/quic/quic_dispatcher_test.cc
|
| @@ -15,7 +15,6 @@
|
| #include "net/quic/core/quic_crypto_stream.h"
|
| #include "net/quic/core/quic_flags.h"
|
| #include "net/quic/core/quic_utils.h"
|
| -#include "net/quic/platform/api/quic_logging.h"
|
| #include "net/quic/platform/api/quic_str_cat.h"
|
| #include "net/quic/test_tools/crypto_test_utils.h"
|
| #include "net/quic/test_tools/fake_proof_source.h"
|
| @@ -154,7 +153,7 @@
|
| dispatcher_(dispatcher) {}
|
|
|
| void UnregisterOnConnectionClosed() {
|
| - QUIC_LOG(ERROR) << "Unregistering " << connection_id();
|
| + LOG(ERROR) << "Unregistering " << connection_id();
|
| dispatcher_->OnConnectionClosed(connection_id(), QUIC_NO_ERROR,
|
| "Unregistering.");
|
| }
|
| @@ -815,8 +814,8 @@
|
| &QuicDispatcherTest::ValidatePacket, base::Unretained(this), 1))));
|
| }
|
|
|
| - QUIC_LOG(INFO) << "ExpectStatelessReject: " << ExpectStatelessReject();
|
| - QUIC_LOG(INFO) << "Params: " << GetParam();
|
| + VLOG(1) << "ExpectStatelessReject: " << ExpectStatelessReject();
|
| + VLOG(1) << "Params: " << GetParam();
|
| // Process the first packet for the connection.
|
| // clang-format off
|
| CryptoHandshakeMessage client_hello = CryptoTestUtils::Message(
|
| @@ -922,7 +921,7 @@
|
| // It would be quite possible to actually implement this method here with
|
| // the fake blocked status, but it would be significantly more work in
|
| // Chromium, and since it's not called anyway, don't bother.
|
| - QUIC_LOG(DFATAL) << "Not supported";
|
| + LOG(DFATAL) << "Not supported";
|
| return WriteResult();
|
| }
|
|
|
|
|