Index: net/quic/quic_connection.cc |
diff --git a/net/quic/quic_connection.cc b/net/quic/quic_connection.cc |
index 6449ee181fda2036c549c87c475f17cab38aed6a..efb3e96d5288cbe70c4eccd578f82c77ee962a43 100644 |
--- a/net/quic/quic_connection.cc |
+++ b/net/quic/quic_connection.cc |
@@ -1162,7 +1162,8 @@ void QuicConnection::SendConnectionClose(QuicErrorCode error) { |
void QuicConnection::SendConnectionClosePacket(QuicErrorCode error, |
const string& details) { |
DLOG(INFO) << ENDPOINT << "Force closing with error " |
- << QuicUtils::ErrorToString(error) << " (" << error << ")"; |
+ << QuicUtils::ErrorToString(error) << " (" << error << ") " |
+ << details; |
QuicConnectionCloseFrame frame; |
frame.error_code = error; |
frame.error_details = details; |