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

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

Issue 2320083005: Log error code for write errors in QuicConnection. (Closed)
Patch Set: Created 4 years, 3 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_connection.cc
diff --git a/net/quic/core/quic_connection.cc b/net/quic/core/quic_connection.cc
index 734740cf849bdbb5d704c240fe8d5a5d5441326c..1286e1b35921c599884ff1a2e992dd992d887a7b 100644
--- a/net/quic/core/quic_connection.cc
+++ b/net/quic/core/quic_connection.cc
@@ -1744,7 +1744,8 @@ bool QuicConnection::WritePacket(SerializedPacket* packet) {
<< " from host " << (self_address().address().empty()
? " empty address "
: self_address().ToStringWithoutPort())
- << " to address " << peer_address().ToString();
+ << " to address " << peer_address().ToString()
+ << " with error code " << result.error_code;
return false;
}
« 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