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

Unified Diff: net/quic/test_tools/simulator/README.md

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/test_tools/quic_test_utils.cc ('k') | net/quic/test_tools/simulator/queue.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/test_tools/simulator/README.md
diff --git a/net/quic/test_tools/simulator/README.md b/net/quic/test_tools/simulator/README.md
index 02ffa0a1c37a509b60049dc9ab07b47721da0ded..b53470afce58d5471d729872d7968e4a01fc2bf7 100644
--- a/net/quic/test_tools/simulator/README.md
+++ b/net/quic/test_tools/simulator/README.md
@@ -30,7 +30,7 @@ class LogClock : public Actor {
~LogClock() override {}
void Act() override {
- VLOG(1) << "The current time is " << clock_->Now().ToDebuggingValue();
+ QUIC_LOG(INFO) << "The current time is " << clock_->Now().ToDebuggingValue();
Schedule(clock_->Now() + QuicTime::Delta::FromMilliseconds(100));
}
};
« no previous file with comments | « net/quic/test_tools/quic_test_utils.cc ('k') | net/quic/test_tools/simulator/queue.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698