Internal QUICHE change
PiperOrigin-RevId: 246572649
Change-Id: Ida918f90f2ed82d031df5c5ef9bdcc841db745ba
diff --git a/quic/core/http/quic_spdy_session.cc b/quic/core/http/quic_spdy_session.cc
index 796edaf..cc1eee7 100644
--- a/quic/core/http/quic_spdy_session.cc
+++ b/quic/core/http/quic_spdy_session.cc
@@ -435,8 +435,8 @@
ConnectionCloseBehavior::SEND_CONNECTION_CLOSE_PACKET);
return;
}
- DVLOG(1) << "Received final byte offset in trailers for stream "
- << stream_id << ", which no longer exists.";
+ QUIC_DVLOG(1) << "Received final byte offset in trailers for stream "
+ << stream_id << ", which no longer exists.";
OnFinalByteOffsetReceived(stream_id, final_byte_offset);
}
}
diff --git a/quic/core/http/quic_spdy_stream.cc b/quic/core/http/quic_spdy_stream.cc
index 674b076..9043ced 100644
--- a/quic/core/http/quic_spdy_stream.cc
+++ b/quic/core/http/quic_spdy_stream.cc
@@ -594,8 +594,8 @@
void QuicSpdyStream::OnDataFrameEnd() {
DCHECK(
VersionHasDataFrameHeader(session()->connection()->transport_version()));
- DVLOG(1) << "Reaches the end of a data frame. Total bytes received are "
- << body_buffer_.total_body_bytes_received();
+ QUIC_DVLOG(1) << "Reaches the end of a data frame. Total bytes received are "
+ << body_buffer_.total_body_bytes_received();
}
bool QuicSpdyStream::OnStreamFrameAcked(QuicStreamOffset offset,
diff --git a/quic/core/quic_crypto_client_handshaker.cc b/quic/core/quic_crypto_client_handshaker.cc
index d6c9af4..1877537 100644
--- a/quic/core/quic_crypto_client_handshaker.cc
+++ b/quic/core/quic_crypto_client_handshaker.cc
@@ -425,7 +425,7 @@
static_cast<HandshakeFailureReason>(reject_reasons[i]);
packed_error |= 1 << (reason - 1);
}
- DVLOG(1) << "Reasons for rejection: " << packed_error;
+ QUIC_DVLOG(1) << "Reasons for rejection: " << packed_error;
if (num_client_hellos_ == QuicCryptoClientStream::kMaxClientHellos) {
QuicClientSparseHistogram("QuicClientHelloRejectReasons.TooMany",
packed_error);