| Index: webkit/glue/plugins/plugin_lib_posix.cc
|
| ===================================================================
|
| --- webkit/glue/plugins/plugin_lib_posix.cc (revision 53834)
|
| +++ webkit/glue/plugins/plugin_lib_posix.cc (working copy)
|
| @@ -118,14 +118,14 @@
|
| if (!newdl) {
|
| // We couldn't load the unwrapped plugin for some reason, despite
|
| // being able to load the wrapped one. Just use the wrapped one.
|
| - LOG_IF(INFO, PluginList::DebugPluginLoading())
|
| + LOG_IF(ERROR, PluginList::DebugPluginLoading())
|
| << "Could not use unwrapped nspluginwrapper plugin "
|
| << unwrapped_path->value() << ", using the wrapped one.";
|
| return;
|
| }
|
|
|
| // Unload the wrapped plugin, and use the wrapped plugin instead.
|
| - LOG_IF(INFO, PluginList::DebugPluginLoading())
|
| + LOG_IF(ERROR, PluginList::DebugPluginLoading())
|
| << "Using unwrapped version " << unwrapped_path->value()
|
| << " of nspluginwrapper-wrapped plugin.";
|
| base::UnloadNativeLibrary(*dl);
|
| @@ -144,7 +144,7 @@
|
|
|
| // Skip files that aren't appropriate for our architecture.
|
| if (!ELFMatchesCurrentArchitecture(filename)) {
|
| - LOG_IF(INFO, PluginList::DebugPluginLoading())
|
| + LOG_IF(ERROR, PluginList::DebugPluginLoading())
|
| << "Skipping plugin " << filename.value()
|
| << " because it doesn't match the current architecture.";
|
| return false;
|
| @@ -152,7 +152,7 @@
|
|
|
| void* dl = base::LoadNativeLibrary(filename);
|
| if (!dl) {
|
| - LOG_IF(INFO, PluginList::DebugPluginLoading())
|
| + LOG_IF(ERROR, PluginList::DebugPluginLoading())
|
| << "While reading plugin info, unable to load library "
|
| << filename.value() << ", skipping.";
|
| return false;
|
| @@ -193,12 +193,12 @@
|
| if (description)
|
| info->desc = UTF8ToUTF16(description);
|
|
|
| - LOG_IF(INFO, PluginList::DebugPluginLoading())
|
| + LOG_IF(ERROR, PluginList::DebugPluginLoading())
|
| << "Got info for plugin " << filename.value()
|
| << " Name = \"" << UTF16ToUTF8(info->name)
|
| << "\", Description = \"" << UTF16ToUTF8(info->desc) << "\".";
|
| } else {
|
| - LOG_IF(INFO, PluginList::DebugPluginLoading())
|
| + LOG_IF(ERROR, PluginList::DebugPluginLoading())
|
| << "Plugin " << filename.value()
|
| << " has no GetValue() and probably won't work.";
|
| }
|
|
|