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

Unified Diff: net/tools/quic/quic_dispatcher.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/quic_client_session.cc ('k') | net/tools/quic/quic_in_memory_cache.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/tools/quic/quic_dispatcher.cc
diff --git a/net/tools/quic/quic_dispatcher.cc b/net/tools/quic/quic_dispatcher.cc
index 69dda9565a29469ef94c748724cf3653993a53cc..1bf107c88be20185f5659d3cd16db3f34f2a69aa 100644
--- a/net/tools/quic/quic_dispatcher.cc
+++ b/net/tools/quic/quic_dispatcher.cc
@@ -110,7 +110,7 @@ void QuicDispatcher::ProcessPacket(const IPEndPoint& server_address,
}
if (session == NULL) {
- DLOG(INFO) << "Failed to create session for " << guid;
+ DVLOG(0) << "Failed to create session for " << guid;
// Add this guid fo the time-wait state, to safely reject future packets.
// We don't know the version here, so assume latest.
// TODO(ianswett): Produce a no-version version negotiation packet.
@@ -123,7 +123,7 @@ void QuicDispatcher::ProcessPacket(const IPEndPoint& server_address,
packet);
return;
}
- DLOG(INFO) << "Created new session for " << guid;
+ DVLOG(0) << "Created new session for " << guid;
session_map_.insert(make_pair(guid, session));
} else {
session = it->second;
@@ -200,7 +200,7 @@ void QuicDispatcher::OnConnectionClosed(QuicGuid guid, QuicErrorCode error) {
return;
}
- DLOG_IF(INFO, error != QUIC_NO_ERROR) << "Closing connection (" << guid
+ DVLOG_IF(0, error != QUIC_NO_ERROR) << "Closing connection (" << guid
<< ") due to error: "
<< QuicUtils::ErrorToString(error);
« no previous file with comments | « net/tools/quic/quic_client_session.cc ('k') | net/tools/quic/quic_in_memory_cache.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698