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

Unified Diff: chrome/common/service_process_util_posix.cc

Issue 3941001: Convert LOG(INFO) to VLOG(1) - chrome/common/. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 2 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: chrome/common/service_process_util_posix.cc
===================================================================
--- chrome/common/service_process_util_posix.cc (revision 63075)
+++ chrome/common/service_process_util_posix.cc (working copy)
@@ -52,7 +52,7 @@
FILE* file = file_util::OpenFile(path, "wb+");
if (!file)
return;
- LOG(INFO) << "Created Service Process lock file: " << path.value();
+ VLOG(1) << "Created Service Process lock file: " << path.value();
file_util::TruncateFile(file) && file_util::CloseFile(file);
}

Powered by Google App Engine
This is Rietveld 408576698