summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorevan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-09-15 01:38:20 +0000
committerevan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-09-15 01:38:20 +0000
commit31b36ccee18298eeafa7485c4b90f5ae5d5e191c (patch)
tree03876571843eaeb3a91551c5aa397fa566033813
parentfbe68fe069c36f64438ed1a0b1b3287164bbb024 (diff)
downloadchromium_src-31b36ccee18298eeafa7485c4b90f5ae5d5e191c.zip
chromium_src-31b36ccee18298eeafa7485c4b90f5ae5d5e191c.tar.gz
chromium_src-31b36ccee18298eeafa7485c4b90f5ae5d5e191c.tar.bz2
linux: raise logging level since INFO doesn't show in Release (?)
Trying to track something down for a user. Review URL: http://codereview.chromium.org/195084 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@26191 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--webkit/glue/plugins/plugin_list_linux.cc12
1 files changed, 6 insertions, 6 deletions
diff --git a/webkit/glue/plugins/plugin_list_linux.cc b/webkit/glue/plugins/plugin_list_linux.cc
index b09d30c..bdc0bf8 100644
--- a/webkit/glue/plugins/plugin_list_linux.cc
+++ b/webkit/glue/plugins/plugin_list_linux.cc
@@ -115,7 +115,7 @@ void PluginList::LoadPluginsFromDir(const FilePath& path,
FilePath orig_path = path;
file_util::AbsolutePath(&path);
if (DebugPluginLoading())
- LOG(INFO) << "Resolved " << orig_path.value() << " -> " << path.value();
+ LOG(ERROR) << "Resolved " << orig_path.value() << " -> " << path.value();
// Get mtime.
file_util::FileInfo info;
@@ -132,7 +132,7 @@ void PluginList::LoadPluginsFromDir(const FilePath& path,
}
if (skip) {
if (DebugPluginLoading())
- LOG(INFO) << "Skipping duplicate instance of " << path.value();
+ LOG(ERROR) << "Skipping duplicate instance of " << path.value();
continue;
}
@@ -152,12 +152,12 @@ void PluginList::LoadPluginsFromDir(const FilePath& path,
bool PluginList::ShouldLoadPlugin(const WebPluginInfo& info,
std::vector<WebPluginInfo>* plugins) {
if (DebugPluginLoading()) {
- LOG(INFO) << "Considering " << info.path.value()
+ LOG(ERROR) << "Considering " << info.path.value()
<< " (" << info.name << ")";
}
if (IsUndesirablePlugin(info)) {
if (DebugPluginLoading())
- LOG(INFO) << info.path.value() << " is undesirable.";
+ LOG(ERROR) << info.path.value() << " is undesirable.";
// See if we have a better version of this plugin.
for (size_t i = 0; i < plugins->size(); ++i) {
@@ -166,7 +166,7 @@ bool PluginList::ShouldLoadPlugin(const WebPluginInfo& info,
// Skip the current undesirable one so we can use the better one
// we just found.
if (DebugPluginLoading()) {
- LOG(INFO) << "Skipping " << info.path.value() << ", preferring "
+ LOG(ERROR) << "Skipping " << info.path.value() << ", preferring "
<< plugins->at(i).path.value();
}
return false;
@@ -177,7 +177,7 @@ bool PluginList::ShouldLoadPlugin(const WebPluginInfo& info,
// TODO(evanm): prefer the newest version of flash, etc. here?
if (DebugPluginLoading())
- LOG(INFO) << "Using " << info.path.value();
+ LOG(ERROR) << "Using " << info.path.value();
return true;
}