| Index: net/quic/core/crypto/quic_encrypter.cc
 | 
| diff --git a/net/quic/core/crypto/quic_encrypter.cc b/net/quic/core/crypto/quic_encrypter.cc
 | 
| index a650485fceb9ed7c91ab3931ad248169547a918b..377720b9db90fef90e1b9de43cec5698ad15efb8 100644
 | 
| --- a/net/quic/core/crypto/quic_encrypter.cc
 | 
| +++ b/net/quic/core/crypto/quic_encrypter.cc
 | 
| @@ -8,6 +8,7 @@
 | 
|  #include "net/quic/core/crypto/chacha20_poly1305_encrypter.h"
 | 
|  #include "net/quic/core/crypto/crypto_protocol.h"
 | 
|  #include "net/quic/core/crypto/null_encrypter.h"
 | 
| +#include "net/quic/platform/api/quic_logging.h"
 | 
|  
 | 
|  namespace net {
 | 
|  
 | 
| @@ -19,7 +20,7 @@ QuicEncrypter* QuicEncrypter::Create(QuicTag algorithm) {
 | 
|      case kCC20:
 | 
|        return new ChaCha20Poly1305Encrypter();
 | 
|      default:
 | 
| -      LOG(FATAL) << "Unsupported algorithm: " << algorithm;
 | 
| +      QUIC_LOG(FATAL) << "Unsupported algorithm: " << algorithm;
 | 
|        return nullptr;
 | 
|    }
 | 
|  }
 | 
| 
 |