Index: net/quic/core/quic_stream.cc |
diff --git a/net/quic/core/quic_stream.cc b/net/quic/core/quic_stream.cc |
index d79d29c12d0833eadcac3b988500dcb48548a5a2..13df51088ca09ca47b93bdad0a3cfb9006dff638 100644 |
--- a/net/quic/core/quic_stream.cc |
+++ b/net/quic/core/quic_stream.cc |
@@ -275,8 +275,8 @@ QuicConsumedData QuicStream::WritevData( |
bool fin, |
QuicReferenceCountedPointer<QuicAckListenerInterface> ack_listener) { |
if (write_side_closed_) { |
- QUIC_DLOG(ERROR) << ENDPOINT |
- << "Attempt to write when the write side is closed"; |
+ QUIC_DLOG(ERROR) << ENDPOINT << "Stream " << id() |
+ << "attempting to write when the write side is closed"; |
return QuicConsumedData(0, false); |
} |
@@ -373,7 +373,7 @@ void QuicStream::CloseReadSide() { |
sequencer_.ReleaseBuffer(); |
if (write_side_closed_) { |
- QUIC_DLOG(INFO) << ENDPOINT << "Closing stream: " << id(); |
+ QUIC_DLOG(INFO) << ENDPOINT << "Closing stream " << id(); |
session_->CloseStream(id()); |
} |
} |
@@ -386,7 +386,7 @@ void QuicStream::CloseWriteSide() { |
write_side_closed_ = true; |
if (read_side_closed_) { |
- QUIC_DLOG(INFO) << ENDPOINT << "Closing stream: " << id(); |
+ QUIC_DLOG(INFO) << ENDPOINT << "Closing stream " << id(); |
session_->CloseStream(id()); |
} |
} |