diff --git a/src/net/spdy/spdy_session.cc b/src/net/spdy/spdy_session.cc index 1466f53afd..a2a084deb3 100644 --- a/src/net/spdy/spdy_session.cc +++ b/src/net/spdy/spdy_session.cc @@ -3231,7 +3231,7 @@ void SpdySession::OnRstStream(spdy::SpdyStreamId stream_id, auto it = active_streams_.find(stream_id); if (it == active_streams_.end()) { // NOTE: it may just be that the stream was cancelled. - LOG(WARNING) << "Received RST for invalid stream" << stream_id; + VLOG(1) << "Received RST for invalid stream" << stream_id; return; } @@ -3446,7 +3446,7 @@ void SpdySession::OnWindowUpdate(spdy::SpdyStreamId stream_id, if (it == active_streams_.end()) { // NOTE: it may just be that the stream was cancelled. - LOG(WARNING) << "Received WINDOW_UPDATE for invalid stream " << stream_id; + VLOG(1) << "Received WINDOW_UPDATE for invalid stream " << stream_id; return; } @@ -3499,7 +3499,7 @@ void SpdySession::OnHeaders(spdy::SpdyStreamId stream_id, auto it = active_streams_.find(stream_id); if (it == active_streams_.end()) { // NOTE: it may just be that the stream was cancelled. - LOG(WARNING) << "Received HEADERS for invalid stream " << stream_id; + VLOG(1) << "Received HEADERS for invalid stream " << stream_id; return; }