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

Unified Diff: net/quic/test_tools/crypto_test_utils.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/quic_framer_test.cc ('k') | net/spdy/buffered_spdy_framer_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/test_tools/crypto_test_utils.cc
diff --git a/net/quic/test_tools/crypto_test_utils.cc b/net/quic/test_tools/crypto_test_utils.cc
index e14d7ab6e362731c2fc2b298b7816faa76210db6..5471c5f7101d0c299ab612b204a05c54074a0c12 100644
--- a/net/quic/test_tools/crypto_test_utils.cc
+++ b/net/quic/test_tools/crypto_test_utils.cc
@@ -226,15 +226,15 @@ void CryptoTestUtils::CommunicateHandshakeMessages(
size_t a_i = 0, b_i = 0;
while (!a->handshake_confirmed()) {
ASSERT_GT(a_conn->packets_.size(), a_i);
- LOG(INFO) << "Processing " << a_conn->packets_.size() - a_i
+ VLOG(0) << "Processing " << a_conn->packets_.size() - a_i
<< " packets a->b";
MovePackets(a_conn, &a_i, b, b_conn);
ASSERT_GT(b_conn->packets_.size(), b_i);
- LOG(INFO) << "Processing " << b_conn->packets_.size() - b_i
+ VLOG(0) << "Processing " << b_conn->packets_.size() - b_i
<< " packets b->a";
if (b_conn->packets_.size() - b_i == 2) {
- LOG(INFO) << "here";
+ VLOG(0) << "here";
}
MovePackets(b_conn, &b_i, a, a_conn);
}
@@ -247,14 +247,14 @@ pair<size_t, size_t> CryptoTestUtils::AdvanceHandshake(
PacketSavingConnection* b_conn,
QuicCryptoStream* b,
size_t b_i) {
- LOG(INFO) << "Processing " << a_conn->packets_.size() - a_i
+ VLOG(0) << "Processing " << a_conn->packets_.size() - a_i
<< " packets a->b";
MovePackets(a_conn, &a_i, b, b_conn);
- LOG(INFO) << "Processing " << b_conn->packets_.size() - b_i
+ VLOG(0) << "Processing " << b_conn->packets_.size() - b_i
<< " packets b->a";
if (b_conn->packets_.size() - b_i == 2) {
- LOG(INFO) << "here";
+ VLOG(0) << "here";
}
MovePackets(b_conn, &b_i, a, a_conn);
« no previous file with comments | « net/quic/quic_framer_test.cc ('k') | net/spdy/buffered_spdy_framer_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698