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

Unified Diff: chrome/browser/net/net_log_logger.cc

Issue 4118004: Update NetLog to be thread safe. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Requires threadsafe observers Created 10 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
Index: chrome/browser/net/net_log_logger.cc
===================================================================
--- chrome/browser/net/net_log_logger.cc (revision 65207)
+++ chrome/browser/net/net_log_logger.cc (working copy)
@@ -21,6 +21,6 @@
params, true));
std::string json;
base::JSONWriter::Write(value.get(), true, &json);
- VLOG(1) << json;
+ LOG(INFO) << json;
eroman 2010/11/16 17:51:14 Is this change intentional?
mmenke 2010/11/16 21:34:49 No. Had been thinking of it (Though not with this
}

Powered by Google App Engine
This is Rietveld 408576698