Replace all remaining instances of LOG in /third_party/quic/ with QUIC_LOG
gfe-relnote: n/a, compile-only change
PiperOrigin-RevId: 247144517
Change-Id: I246626df6855a7d162054b59a7673bac536f1a7e
diff --git a/quic/quartc/quartc_fakes.h b/quic/quartc/quartc_fakes.h
index 17e3874..ddff641 100644
--- a/quic/quartc/quartc_fakes.h
+++ b/quic/quartc/quartc_fakes.h
@@ -31,8 +31,9 @@
void OnConnectError(QuicErrorCode error,
const std::string& error_details) override {
- LOG(FATAL) << "Unexpected error during QuartcEndpoint::Connect(); error="
- << error << ", error_details=" << error_details;
+ QUIC_LOG(FATAL)
+ << "Unexpected error during QuartcEndpoint::Connect(); error=" << error
+ << ", error_details=" << error_details;
}
QuartcSession* session() { return session_; }
@@ -49,7 +50,7 @@
: stream_delegate_(stream_delegate), clock_(clock) {}
void OnConnectionWritable() override {
- LOG(INFO) << "Connection writable!";
+ QUIC_LOG(INFO) << "Connection writable!";
if (!writable_time_.IsInitialized()) {
writable_time_ = clock_->Now();
}
@@ -57,7 +58,7 @@
// Called when peers have established forward-secure encryption
void OnCryptoHandshakeComplete() override {
- LOG(INFO) << "Crypto handshake complete!";
+ QUIC_LOG(INFO) << "Crypto handshake complete!";
crypto_handshake_time_ = clock_->Now();
}