summaryrefslogtreecommitdiffstats
path: root/chrome/browser/process_singleton_win.cc
diff options
context:
space:
mode:
authorpkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-10-21 20:57:12 +0000
committerpkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-10-21 20:57:12 +0000
commit8e96e50baaa3cf984eb64355391d7ec48a958e81 (patch)
treeaf80bc851bc4421a5e159c3bd1bc1cb31ee21f55 /chrome/browser/process_singleton_win.cc
parent6662050331dad5db984ac85e8705ff49236dbe51 (diff)
downloadchromium_src-8e96e50baaa3cf984eb64355391d7ec48a958e81.zip
chromium_src-8e96e50baaa3cf984eb64355391d7ec48a958e81.tar.gz
chromium_src-8e96e50baaa3cf984eb64355391d7ec48a958e81.tar.bz2
Convert LOG(INFO) to VLOG(1) - misc. chrome/browser/*.
BUG=none TEST=none Review URL: http://codereview.chromium.org/4008001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@63421 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/process_singleton_win.cc')
-rw-r--r--chrome/browser/process_singleton_win.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/process_singleton_win.cc b/chrome/browser/process_singleton_win.cc
index 5cbf2a5..7b56819 100644
--- a/chrome/browser/process_singleton_win.cc
+++ b/chrome/browser/process_singleton_win.cc
@@ -243,7 +243,7 @@ LRESULT ProcessSingleton::OnCopyData(HWND hwnd, const COPYDATASTRUCT* cds) {
if (msg.substr(0, first_null) == L"START") {
// Another instance is starting parse the command line & do what it would
// have done.
- LOG(INFO) << "Handling STARTUP request from another process";
+ VLOG(1) << "Handling STARTUP request from another process";
const std::wstring::size_type second_null =
msg.find_first_of(L'\0', first_null + 1);
if (second_null == std::wstring::npos ||