summaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorwillchan@chromium.org <willchan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-09-09 21:28:33 +0000
committerwillchan@chromium.org <willchan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-09-09 21:28:33 +0000
commit05cb44fec3b8ee586d1639c9e65a5c9c802f7e8d (patch)
treed755a552611039184d74b23da09a76e281e1863e /net
parentd006e31b8205a5e07125d73eed5e880006f4d015 (diff)
downloadchromium_src-05cb44fec3b8ee586d1639c9e65a5c9c802f7e8d.zip
chromium_src-05cb44fec3b8ee586d1639c9e65a5c9c802f7e8d.tar.gz
chromium_src-05cb44fec3b8ee586d1639c9e65a5c9c802f7e8d.tar.bz2
LOG(WARNING)=>VLOG for SPDY path logging
BUG=chromium-os:20206 TEST=none Review URL: http://codereview.chromium.org/7860015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@100500 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net')
-rw-r--r--net/spdy/spdy_session.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/spdy/spdy_session.cc b/net/spdy/spdy_session.cc
index a1e8afe..08fe3f5 100644
--- a/net/spdy/spdy_session.cc
+++ b/net/spdy/spdy_session.cc
@@ -823,8 +823,8 @@ void SpdySession::CloseAllStreams(net::Error status) {
ActiveStreamMap::iterator it = active_streams_.begin();
const scoped_refptr<SpdyStream>& stream = it->second;
DCHECK(stream);
- LOG(WARNING) << "ABANDONED (stream_id=" << stream->stream_id()
- << "): " << stream->path();
+ VLOG(1) << "ABANDONED (stream_id=" << stream->stream_id()
+ << "): " << stream->path();
DeleteStream(stream->stream_id(), status);
}