summaryrefslogtreecommitdiffstats
path: root/chrome/browser/shell_integration_linux.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/shell_integration_linux.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/shell_integration_linux.cc')
-rw-r--r--chrome/browser/shell_integration_linux.cc4
1 files changed, 2 insertions, 2 deletions
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<FilePath>::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);
}
}