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

Unified Diff: net/spdy/spdy_session.cc

Issue 1321002: Reducing the debug output spam. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 9 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/spdy/spdy_network_transaction_unittest.cc ('k') | net/spdy/spdy_stream.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/spdy/spdy_session.cc
===================================================================
--- net/spdy/spdy_session.cc (revision 42660)
+++ net/spdy/spdy_session.cc (working copy)
@@ -533,7 +533,6 @@
}
void SpdySession::OnReadComplete(int bytes_read) {
- DLOG(INFO) << " >> " << __FUNCTION__ << "()";
// Parse a frame. For now this code requires that the frame fit into our
// buffer (32KB).
// TODO(mbelshe): support arbitrarily large frames!
@@ -572,7 +571,6 @@
}
void SpdySession::OnWriteComplete(int result) {
- DLOG(INFO) << " >> " << __FUNCTION__ << "()";
DCHECK(write_pending_);
DCHECK(in_flight_write_.size());
DCHECK(result != 0); // This shouldn't happen for write.
@@ -1023,7 +1021,6 @@
}
void SpdySession::OnControl(const spdy::SpdyControlFrame* frame) {
- DLOG(INFO) << " >> " << __FUNCTION__ << "()";
spdy::SpdyHeaderBlock headers;
uint32 type = frame->type();
if (type == spdy::SYN_STREAM || type == spdy::SYN_REPLY) {
@@ -1081,7 +1078,6 @@
}
void SpdySession::OnGoAway(const spdy::SpdyGoAwayControlFrame& frame) {
- DLOG(INFO) << " >> " << __FUNCTION__ << "()";
session_->spdy_session_pool()->Remove(this);
// TODO(willchan): Cancel any streams that are past the GoAway frame's
« no previous file with comments | « net/spdy/spdy_network_transaction_unittest.cc ('k') | net/spdy/spdy_stream.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698