| Index: net/quic/core/crypto/crypto_framer_test.cc
|
| diff --git a/net/quic/core/crypto/crypto_framer_test.cc b/net/quic/core/crypto/crypto_framer_test.cc
|
| index d99ebcdbe78ff285dc8b4dacd0fb8e6d8954302a..5e045a455327bd51530c3916fc42e8560c195cc8 100644
|
| --- a/net/quic/core/crypto/crypto_framer_test.cc
|
| +++ b/net/quic/core/crypto/crypto_framer_test.cc
|
| @@ -8,10 +8,10 @@
|
| #include <memory>
|
| #include <vector>
|
|
|
| -#include "base/logging.h"
|
| #include "net/quic/core/crypto/crypto_handshake.h"
|
| #include "net/quic/core/crypto/crypto_protocol.h"
|
| #include "net/quic/core/quic_packets.h"
|
| +#include "net/quic/platform/api/quic_logging.h"
|
| #include "net/quic/test_tools/crypto_test_utils.h"
|
| #include "net/quic/test_tools/quic_test_utils.h"
|
|
|
| @@ -35,7 +35,7 @@ class TestCryptoVisitor : public CryptoFramerVisitorInterface {
|
| TestCryptoVisitor() : error_count_(0) {}
|
|
|
| void OnError(CryptoFramer* framer) override {
|
| - DLOG(ERROR) << "CryptoFramer Error: " << framer->error();
|
| + QUIC_DLOG(ERROR) << "CryptoFramer Error: " << framer->error();
|
| ++error_count_;
|
| }
|
|
|
|
|