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

Unified Diff: net/tools/quic/quic_dispatcher.cc

Issue 137253006: Silence INFO logging in net/tools/quic/ and use VLOG(1) instead. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 11 months 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 e684138f46a00f642480bee5936c47010f089100..dcb8d6a4650b57f8c32109f86567091b1aea2a22 100644
--- a/net/tools/quic/quic_dispatcher.cc
+++ b/net/tools/quic/quic_dispatcher.cc
@@ -54,7 +54,7 @@ class QuicDispatcher::QuicFramerVisitor : public QuicFramerVisitorInterface {
return false;
}
virtual void OnError(QuicFramer* framer) OVERRIDE {
- DLOG(INFO) << QuicUtils::ErrorToString(framer->error());
+ DVLOG(1) << QuicUtils::ErrorToString(framer->error());
}
// The following methods should never get called because we always return
@@ -220,7 +220,7 @@ bool QuicDispatcher::OnUnauthenticatedPublicHeader(
}
if (session == NULL) {
- DLOG(INFO) << "Failed to create session for " << guid;
+ DVLOG(1) << "Failed to create session for " << guid;
// Add this guid fo the time-wait state, to safely reject future packets.
if (header.version_flag &&
@@ -236,7 +236,7 @@ bool QuicDispatcher::OnUnauthenticatedPublicHeader(
DCHECK(time_wait_list_manager_->IsGuidInTimeWait(guid));
return HandlePacketForTimeWait(header);
}
- DLOG(INFO) << "Created new session for " << guid;
+ DVLOG(1) << "Created new session for " << guid;
session_map_.insert(make_pair(guid, session));
} else {
session = it->second;
« 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