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,