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

Unified Diff: net/websockets/websocket_frame_test.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/tools/quic/test_tools/packet_dropping_test_writer.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/websockets/websocket_frame_test.cc
diff --git a/net/websockets/websocket_frame_test.cc b/net/websockets/websocket_frame_test.cc
index 97fac03e12edc1b4b47c42ca5310f4120c537931..1e673731c7acef9e3a243eca2eb09d5568395f13 100644
--- a/net/websockets/websocket_frame_test.cc
+++ b/net/websockets/websocket_frame_test.cc
@@ -367,7 +367,7 @@ class WebSocketFrameTestMaskBenchmark : public testing::Test {
std::copy(kMaskingKey,
kMaskingKey + WebSocketFrameHeader::kMaskingKeyLength,
masking_key.key);
- LOG(INFO) << "Benchmarking MaskWebSocketFramePayload() for " << iterations_
+ VLOG(0) << "Benchmarking MaskWebSocketFramePayload() for " << iterations_
<< " iterations";
using base::TimeTicks;
TimeTicks start = TimeTicks::HighResNow();
@@ -378,7 +378,7 @@ class WebSocketFrameTestMaskBenchmark : public testing::Test {
double total_time_ms =
1000 * (TimeTicks::HighResNow() - start).InMillisecondsF() /
iterations_;
- LOG(INFO) << "Payload size " << size
+ VLOG(0) << "Payload size " << size
<< base::StringPrintf(" took %.03f microseconds per iteration",
total_time_ms);
}
« no previous file with comments | « net/tools/quic/test_tools/packet_dropping_test_writer.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698