| Index: net/quic/core/crypto/aead_base_decrypter.cc
|
| diff --git a/net/quic/core/crypto/aead_base_decrypter.cc b/net/quic/core/crypto/aead_base_decrypter.cc
|
| index 57984245c7a3f9bcc9bfb5f7ae5f32cc8022c4e0..0d2c6c3a6df5d7eaa83da83659ef3eefca5db69b 100644
|
| --- a/net/quic/core/crypto/aead_base_decrypter.cc
|
| +++ b/net/quic/core/crypto/aead_base_decrypter.cc
|
| @@ -8,7 +8,6 @@
|
|
|
| #include "net/quic/core/quic_utils.h"
|
| #include "net/quic/platform/api/quic_bug_tracker.h"
|
| -#include "net/quic/platform/api/quic_logging.h"
|
| #include "third_party/boringssl/src/include/openssl/err.h"
|
| #include "third_party/boringssl/src/include/openssl/evp.h"
|
|
|
| @@ -34,7 +33,7 @@
|
| while (uint32_t error = ERR_get_error()) {
|
| char buf[120];
|
| ERR_error_string_n(error, buf, arraysize(buf));
|
| - QUIC_DLOG(ERROR) << "OpenSSL error: " << buf;
|
| + DLOG(ERROR) << "OpenSSL error: " << buf;
|
| }
|
| #endif
|
| }
|
|
|