diff options
author | scottmg@chromium.org <scottmg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-11-25 19:30:52 +0000 |
---|---|---|
committer | scottmg@chromium.org <scottmg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-11-25 19:30:52 +0000 |
commit | b46d699461817984366d8a230a51ffb4d0afe8f1 (patch) | |
tree | ad3a744785ed879bee20d5fcd0d866859af1c1d6 /net/websockets | |
parent | 87ecde9bc0017384d98b195dfd7e76dae63ac504 (diff) | |
download | chromium_src-b46d699461817984366d8a230a51ffb4d0afe8f1.zip chromium_src-b46d699461817984366d8a230a51ffb4d0afe8f1.tar.gz chromium_src-b46d699461817984366d8a230a51ffb4d0afe8f1.tar.bz2 |
Revert 237095 "LOG(INFO) tidying in net/"
VLOG(0) isn't any better than LOG(INFO), other than sneaking past PRESUBMIT.
> LOG(INFO) tidying in net/
>
> Some deletions, some to VLOG.
>
> R=rsleevi@chromium.org
> BUG=322805
>
> Review URL: https://codereview.chromium.org/82913011
TBR=scottmg@chromium.org
Review URL: https://codereview.chromium.org/86203003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@237122 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/websockets')
-rw-r--r-- | net/websockets/websocket_frame_test.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/websockets/websocket_frame_test.cc b/net/websockets/websocket_frame_test.cc index 1e67373..97fac03 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); - VLOG(0) << "Benchmarking MaskWebSocketFramePayload() for " << iterations_ + LOG(INFO) << "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_; - VLOG(0) << "Payload size " << size + LOG(INFO) << "Payload size " << size << base::StringPrintf(" took %.03f microseconds per iteration", total_time_ms); } |