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

Unified Diff: net/spdy/buffered_spdy_framer_unittest.cc

Issue 82913011: LOG(INFO) tidying in net/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: revert dns_fuzz_stub changes Created 7 years, 1 month 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/quic/test_tools/crypto_test_utils.cc ('k') | net/spdy/spdy_framer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/spdy/buffered_spdy_framer_unittest.cc
diff --git a/net/spdy/buffered_spdy_framer_unittest.cc b/net/spdy/buffered_spdy_framer_unittest.cc
index 31a649da2d0c992e54bae52feda7f8e10bfb448e..f975fefe955e579bfe28929033ac9af318e16188 100644
--- a/net/spdy/buffered_spdy_framer_unittest.cc
+++ b/net/spdy/buffered_spdy_framer_unittest.cc
@@ -24,14 +24,14 @@ class TestBufferedSpdyVisitor : public BufferedSpdyFramerVisitorInterface {
}
virtual void OnError(SpdyFramer::SpdyError error_code) OVERRIDE {
- LOG(INFO) << "SpdyFramer Error: " << error_code;
+ VLOG(0) << "SpdyFramer Error: " << error_code;
error_count_++;
}
virtual void OnStreamError(
SpdyStreamId stream_id,
const std::string& description) OVERRIDE {
- LOG(INFO) << "SpdyFramer Error on stream: " << stream_id << " "
+ VLOG(0) << "SpdyFramer Error on stream: " << stream_id << " "
<< description;
error_count_++;
}
« no previous file with comments | « net/quic/test_tools/crypto_test_utils.cc ('k') | net/spdy/spdy_framer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698