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

Unified Diff: net/quic/core/crypto/crypto_framer_test.cc

Issue 2611613003: Add quic_logging (Closed)
Patch Set: fix failed test? 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
« no previous file with comments | « net/quic/core/crypto/crypto_framer.h ('k') | net/quic/core/crypto/crypto_utils.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/core/crypto/crypto_framer_test.cc
diff --git a/net/quic/core/crypto/crypto_framer_test.cc b/net/quic/core/crypto/crypto_framer_test.cc
index d99ebcdbe78ff285dc8b4dacd0fb8e6d8954302a..5e045a455327bd51530c3916fc42e8560c195cc8 100644
--- a/net/quic/core/crypto/crypto_framer_test.cc
+++ b/net/quic/core/crypto/crypto_framer_test.cc
@@ -8,10 +8,10 @@
#include <memory>
#include <vector>
-#include "base/logging.h"
#include "net/quic/core/crypto/crypto_handshake.h"
#include "net/quic/core/crypto/crypto_protocol.h"
#include "net/quic/core/quic_packets.h"
+#include "net/quic/platform/api/quic_logging.h"
#include "net/quic/test_tools/crypto_test_utils.h"
#include "net/quic/test_tools/quic_test_utils.h"
@@ -35,7 +35,7 @@ class TestCryptoVisitor : public CryptoFramerVisitorInterface {
TestCryptoVisitor() : error_count_(0) {}
void OnError(CryptoFramer* framer) override {
- DLOG(ERROR) << "CryptoFramer Error: " << framer->error();
+ QUIC_DLOG(ERROR) << "CryptoFramer Error: " << framer->error();
++error_count_;
}
« no previous file with comments | « net/quic/core/crypto/crypto_framer.h ('k') | net/quic/core/crypto/crypto_utils.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698