Replace all remaining instances of LOG in /third_party/quic/ with QUIC_LOG
gfe-relnote: n/a, compile-only change
PiperOrigin-RevId: 247241796
Change-Id: Ide8fde2a0ca4b58de7f956bf0e4b4fae7771dfe3
diff --git a/quic/core/http/quic_server_session_base.cc b/quic/core/http/quic_server_session_base.cc
index 5cdb2c4..683793d 100644
--- a/quic/core/http/quic_server_session_base.cc
+++ b/quic/core/http/quic_server_session_base.cc
@@ -227,8 +227,8 @@
connection()->transport_version() != QUIC_VERSION_99) {
if (GetNumOpenOutgoingStreams() >=
stream_id_manager().max_open_outgoing_streams()) {
- VLOG(1) << "No more streams should be created. "
- << "Already " << GetNumOpenOutgoingStreams() << " open.";
+ QUIC_VLOG(1) << "No more streams should be created. "
+ << "Already " << GetNumOpenOutgoingStreams() << " open.";
return false;
}
}
@@ -251,8 +251,8 @@
connection()->transport_version() != QUIC_VERSION_99) {
if (GetNumOpenOutgoingStreams() >=
stream_id_manager().max_open_outgoing_streams()) {
- VLOG(1) << "No more streams should be created. "
- << "Already " << GetNumOpenOutgoingStreams() << " open.";
+ QUIC_VLOG(1) << "No more streams should be created. "
+ << "Already " << GetNumOpenOutgoingStreams() << " open.";
return false;
}
}