From 8e96e50baaa3cf984eb64355391d7ec48a958e81 Mon Sep 17 00:00:00 2001 From: "pkasting@chromium.org" Date: Thu, 21 Oct 2010 20:57:12 +0000 Subject: 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 --- chrome/browser/shell_integration_linux.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'chrome/browser/shell_integration_linux.cc') diff --git a/chrome/browser/shell_integration_linux.cc b/chrome/browser/shell_integration_linux.cc index d3bc8f7..0a88c5d 100644 --- a/chrome/browser/shell_integration_linux.cc +++ b/chrome/browser/shell_integration_linux.cc @@ -279,9 +279,9 @@ bool ShellIntegration::GetDesktopShortcutTemplate( for (std::vector::const_iterator i = search_paths.begin(); i != search_paths.end(); ++i) { FilePath path = (*i).Append(template_filename); - LOG(INFO) << "Looking for desktop file template in " << path.value(); + VLOG(1) << "Looking for desktop file template in " << path.value(); if (file_util::PathExists(path)) { - LOG(INFO) << "Found desktop file template at " << path.value(); + VLOG(1) << "Found desktop file template at " << path.value(); return file_util::ReadFileToString(path, output); } } -- cgit v1.1