| Index: net/quic/core/crypto/quic_decrypter.cc
|
| diff --git a/net/quic/core/crypto/quic_decrypter.cc b/net/quic/core/crypto/quic_decrypter.cc
|
| index 2ff6f33e8feba3e711b3e05949cd03773cee9b00..f7719144bcf357bda7063ffbc512ebc1e553ca31 100644
|
| --- a/net/quic/core/crypto/quic_decrypter.cc
|
| +++ b/net/quic/core/crypto/quic_decrypter.cc
|
| @@ -9,6 +9,7 @@
|
| #include "net/quic/core/crypto/chacha20_poly1305_decrypter.h"
|
| #include "net/quic/core/crypto/crypto_protocol.h"
|
| #include "net/quic/core/crypto/null_decrypter.h"
|
| +#include "net/quic/platform/api/quic_logging.h"
|
|
|
| using base::StringPiece;
|
| using std::string;
|
| @@ -23,7 +24,7 @@ QuicDecrypter* QuicDecrypter::Create(QuicTag algorithm) {
|
| case kCC20:
|
| return new ChaCha20Poly1305Decrypter();
|
| default:
|
| - LOG(FATAL) << "Unsupported algorithm: " << algorithm;
|
| + QUIC_LOG(FATAL) << "Unsupported algorithm: " << algorithm;
|
| return nullptr;
|
| }
|
| }
|
|
|