diff options
author | ahendrickson@google.com <ahendrickson@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-25 23:43:01 +0000 |
---|---|---|
committer | ahendrickson@google.com <ahendrickson@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-25 23:43:01 +0000 |
commit | 25edef40e0b04e7537d6a876eeba312c3d1ebb78 (patch) | |
tree | b32f39b39d0c3e4a0dda46da7437a0bfbc789f90 /net/spdy/spdy_stream.cc | |
parent | 321f4c12b428e24d6a59817e80aa36707aecd72f (diff) | |
download | chromium_src-25edef40e0b04e7537d6a876eeba312c3d1ebb78.zip chromium_src-25edef40e0b04e7537d6a876eeba312c3d1ebb78.tar.gz chromium_src-25edef40e0b04e7537d6a876eeba312c3d1ebb78.tar.bz2 |
Reducing the debug output spam.
BUG=None
TEST=None
Review URL: http://codereview.chromium.org/1321002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@42694 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/spdy/spdy_stream.cc')
-rw-r--r-- | net/spdy/spdy_stream.cc | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/net/spdy/spdy_stream.cc b/net/spdy/spdy_stream.cc index c381da1..5382f6c 100644 --- a/net/spdy/spdy_stream.cc +++ b/net/spdy/spdy_stream.cc @@ -151,8 +151,6 @@ int SpdyStream::SendRequest(UploadDataStream* upload_data, CHECK(!cancelled_); CHECK(response); - DLOG(INFO) << " * " << __FUNCTION__ << "()"; - if (response_) { *response = *response_; delete response_; @@ -194,7 +192,6 @@ void SpdyStream::Cancel() { } void SpdyStream::OnResponseReceived(const HttpResponseInfo& response) { - DLOG(INFO) << " >> " << __FUNCTION__ << "()"; metrics_.StartStream(); CHECK(!response_->headers); @@ -226,7 +223,6 @@ void SpdyStream::OnResponseReceived(const HttpResponseInfo& response) { } 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 @@ bool SpdyStream::OnDataReceived(const char* data, int length) { } 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::OnWriteComplete(int status) { } void SpdyStream::OnClose(int status) { - DLOG(INFO) << " >> " << __FUNCTION__ << "()"; response_complete_ = true; response_status_ = status; stream_id_ = 0; @@ -301,8 +295,6 @@ void SpdyStream::OnClose(int status) { int SpdyStream::DoLoop(int result) { do { - DLOG(INFO) << " * " << __FUNCTION__ << "() state = " << io_state_ - << " result = " << result; State state = io_state_; io_state_ = STATE_NONE; switch (state) { |