summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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);
}