| 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 0d2c6c3a6df5d7eaa83da83659ef3eefca5db69b..57984245c7a3f9bcc9bfb5f7ae5f32cc8022c4e0 100644
 | 
| --- a/net/quic/core/crypto/aead_base_decrypter.cc
 | 
| +++ b/net/quic/core/crypto/aead_base_decrypter.cc
 | 
| @@ -8,6 +8,7 @@
 | 
|  
 | 
|  #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"
 | 
|  
 | 
| @@ -33,7 +34,7 @@ void DLogOpenSslErrors() {
 | 
|    while (uint32_t error = ERR_get_error()) {
 | 
|      char buf[120];
 | 
|      ERR_error_string_n(error, buf, arraysize(buf));
 | 
| -    DLOG(ERROR) << "OpenSSL error: " << buf;
 | 
| +    QUIC_DLOG(ERROR) << "OpenSSL error: " << buf;
 | 
|    }
 | 
|  #endif
 | 
|  }
 | 
| 
 |