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

Unified Diff: net/spdy/spdy_stream.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_session.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/spdy/spdy_stream.cc
===================================================================
--- net/spdy/spdy_stream.cc (revision 42660)
+++ net/spdy/spdy_stream.cc (working copy)
@@ -151,8 +151,6 @@
CHECK(!cancelled_);
CHECK(response);
- DLOG(INFO) << " * " << __FUNCTION__ << "()";
-
if (response_) {
*response = *response_;
delete response_;
@@ -194,7 +192,6 @@
}
void SpdyStream::OnResponseReceived(const HttpResponseInfo& response) {
- DLOG(INFO) << " >> " << __FUNCTION__ << "()";
metrics_.StartStream();
CHECK(!response_->headers);
@@ -226,7 +223,6 @@
}
bool SpdyStream::OnDataReceived(const char* data, int length) {
- DLOG(INFO) << " >> " << __FUNCTION__ << "()";
DCHECK_GE(length, 0);
LOG(INFO) << "SpdyStream: Data (" << length << " bytes) received for "
<< stream_id_;
@@ -277,7 +273,6 @@
}
void SpdyStream::OnWriteComplete(int status) {
- DLOG(INFO) << " >> " << __FUNCTION__ << "()";
// TODO(mbelshe): Check for cancellation here. If we're cancelled, we
// should discontinue the DoLoop.
@@ -288,7 +283,6 @@
}
void SpdyStream::OnClose(int status) {
- DLOG(INFO) << " >> " << __FUNCTION__ << "()";
response_complete_ = true;
response_status_ = status;
stream_id_ = 0;
@@ -301,8 +295,6 @@
int SpdyStream::DoLoop(int result) {
do {
- DLOG(INFO) << " * " << __FUNCTION__ << "() state = " << io_state_
- << " result = " << result;
State state = io_state_;
io_state_ = STATE_NONE;
switch (state) {
« no previous file with comments | « net/spdy/spdy_session.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698