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

Unified Diff: net/tools/quic/quic_spdy_server_stream_base.cc

Issue 2611613003: Add quic_logging (Closed)
Patch Set: fix failed test? Created 3 years, 11 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 | « net/tools/quic/quic_spdy_client_stream_test.cc ('k') | net/tools/quic/quic_time_wait_list_manager.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/tools/quic/quic_spdy_server_stream_base.cc
diff --git a/net/tools/quic/quic_spdy_server_stream_base.cc b/net/tools/quic/quic_spdy_server_stream_base.cc
index 4b68127775d04b55e47dd68be7fe23a9d8c3bc28..e84516899b5be4a0272b602ed52471b93a14a8a4 100644
--- a/net/tools/quic/quic_spdy_server_stream_base.cc
+++ b/net/tools/quic/quic_spdy_server_stream_base.cc
@@ -5,6 +5,7 @@
#include "net/tools/quic/quic_spdy_server_stream_base.h"
#include "net/quic/core/quic_error_codes.h"
+#include "net/quic/platform/api/quic_logging.h"
namespace net {
@@ -19,7 +20,7 @@ void QuicSpdyServerStreamBase::CloseWriteSide() {
// or RST.
DCHECK(fin_sent());
// Tell the peer to stop sending further data.
- DVLOG(0) << " Server: Send QUIC_STREAM_NO_ERROR on stream " << id();
+ QUIC_DVLOG(0) << " Server: Send QUIC_STREAM_NO_ERROR on stream " << id();
Reset(QUIC_STREAM_NO_ERROR);
}
« no previous file with comments | « net/tools/quic/quic_spdy_client_stream_test.cc ('k') | net/tools/quic/quic_time_wait_list_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698