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

Unified Diff: net/quic/core/quic_config.cc

Issue 2611613003: Add quic_logging (Closed)
Patch Set: fix for win Created 3 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
Index: net/quic/core/quic_config.cc
diff --git a/net/quic/core/quic_config.cc b/net/quic/core/quic_config.cc
index 50914e6c12c841f5602f09e07e3df33a84aa49cb..1e9ba05dca39f1e91276a8a3577fe40a8f44b6a2 100644
--- a/net/quic/core/quic_config.cc
+++ b/net/quic/core/quic_config.cc
@@ -6,13 +6,13 @@
#include <algorithm>
-#include "base/logging.h"
#include "net/quic/core/crypto/crypto_handshake_message.h"
#include "net/quic/core/crypto/crypto_protocol.h"
#include "net/quic/core/quic_bug_tracker.h"
#include "net/quic/core/quic_flags.h"
#include "net/quic/core/quic_socket_address_coder.h"
#include "net/quic/core/quic_utils.h"
+#include "net/quic/platform/api/quic_logging.h"
using std::string;
@@ -242,7 +242,7 @@ QuicErrorCode QuicFixedTagVector::ProcessPeerHello(
*error_details = "Missing " + QuicTagToString(tag_);
break;
case QUIC_NO_ERROR:
- DVLOG(1) << "Received Connection Option tags from receiver.";
+ QUIC_DVLOG(1) << "Received Connection Option tags from receiver.";
has_receive_values_ = true;
for (size_t i = 0; i < received_tags_length; ++i) {
receive_values_.push_back(received_tags[i]);

Powered by Google App Engine
This is Rietveld 408576698