Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(894)

Unified Diff: net/quic/core/quic_stream.cc

Issue 2961113002: In QUIC, decrease verbose level QUIC_DLOG "Stream destroyed while waiting for acks." to QUIC_DVLOG(… (Closed)
Patch Set: Rebase Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/core/quic_stream.cc
diff --git a/net/quic/core/quic_stream.cc b/net/quic/core/quic_stream.cc
index 2aa2ac93e271bc089ea21ddeb909b9bf55df8adb..4e8d7a65835736b7d700319e634732dc099e6aab 100644
--- a/net/quic/core/quic_stream.cc
+++ b/net/quic/core/quic_stream.cc
@@ -82,10 +82,14 @@ QuicStream::QuicStream(QuicStreamId id, QuicSession* session)
}
QuicStream::~QuicStream() {
- QUIC_DLOG_IF(WARNING, session_ != nullptr &&
- session_->use_stream_notifier() &&
- IsWaitingForAcks())
- << "Stream destroyed while waiting for acks.";
+ if (session_ != nullptr && session_->use_stream_notifier() &&
+ IsWaitingForAcks()) {
+ QUIC_DVLOG(1)
+ << ENDPOINT << "Stream " << id_
+ << " gets destroyed while waiting for acks. stream_bytes_outstanding = "
+ << stream_bytes_outstanding_
+ << ", fin_outstanding: " << fin_outstanding_;
+ }
}
void QuicStream::SetFromConfig() {}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698