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

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

Issue 2481703002: Rewrite a DLOG message to make it more readable. Currently the output is: (Closed)
Patch Set: Created 4 years, 1 month 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/reliable_quic_stream.cc
diff --git a/net/quic/core/reliable_quic_stream.cc b/net/quic/core/reliable_quic_stream.cc
index 1c71776d56ef578fe5c312863639c418ff430dc6..42cffbd23f4ab62d04ec6be64214290cdd552ff7 100644
--- a/net/quic/core/reliable_quic_stream.cc
+++ b/net/quic/core/reliable_quic_stream.cc
@@ -95,7 +95,8 @@ void ReliableQuicStream::OnStreamFrame(const QuicStreamFrame& frame) {
}
if (read_side_closed_) {
- DVLOG(1) << ENDPOINT << "Ignoring data in frame " << frame.stream_id;
+ DVLOG(1) << ENDPOINT << "Stream " << frame.stream_id
+ << " is closed for reading. Ignoring newly received stream data.";
// The subclass does not want to read data: blackhole the data.
return;
}
« 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