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);
diff --git a/quic/test_tools/simple_session_notifier.cc b/quic/test_tools/simple_session_notifier.cc index 643821a..9ae4d22 100644 --- a/quic/test_tools/simple_session_notifier.cc +++ b/quic/test_tools/simple_session_notifier.cc
@@ -5,6 +5,7 @@ #include "net/third_party/quiche/src/quic/test_tools/simple_session_notifier.h" #include "net/third_party/quiche/src/quic/core/quic_utils.h" +#include "net/third_party/quiche/src/quic/platform/api/quic_logging.h" #include "net/third_party/quiche/src/quic/platform/api/quic_map_util.h" #include "net/third_party/quiche/src/quic/test_tools/quic_test_utils.h" @@ -551,7 +552,7 @@ connection_->SendStreamData(pair.first, 0, state.bytes_sent, FIN); state.fin_lost = !consumed.fin_consumed; if (state.fin_lost) { - DLOG(INFO) << "Connection is write blocked"; + QUIC_DLOG(INFO) << "Connection is write blocked"; return false; } } else { @@ -573,7 +574,7 @@ } if (length > consumed.bytes_consumed || (can_bundle_fin && !consumed.fin_consumed)) { - DVLOG(1) << "Connection is write blocked"; + QUIC_DVLOG(1) << "Connection is write blocked"; break; } }
diff --git a/quic/tools/quic_client_epoll_network_helper.cc b/quic/tools/quic_client_epoll_network_helper.cc index e545ee2..1175211 100644 --- a/quic/tools/quic_client_epoll_network_helper.cc +++ b/quic/tools/quic_client_epoll_network_helper.cc
@@ -133,7 +133,7 @@ DCHECK_EQ(fd, GetLatestFD()); if (event->in_events & EPOLLIN) { - DVLOG(1) << "Read packets on EPOLLIN"; + QUIC_DVLOG(1) << "Read packets on EPOLLIN"; int times_to_read = max_reads_per_epoll_loop_; bool more_to_read = true; QuicPacketCount packets_dropped = 0;
diff --git a/quic/tools/quic_memory_cache_backend.cc b/quic/tools/quic_memory_cache_backend.cc index 76a52c3..96faacb 100644 --- a/quic/tools/quic_memory_cache_backend.cc +++ b/quic/tools/quic_memory_cache_backend.cc
@@ -137,8 +137,8 @@ auto it = responses_.find(GetKey(host, path)); if (it == responses_.end()) { - DVLOG(1) << "Get response for resource failed: host " << host << " path " - << path; + QUIC_DVLOG(1) << "Get response for resource failed: host " << host + << " path " << path; if (default_response_) { return default_response_.get(); }