Index: content/zygote/zygote_main_linux.cc |
=================================================================== |
--- content/zygote/zygote_main_linux.cc (revision 239266) |
+++ content/zygote/zygote_main_linux.cc (working copy) |
@@ -262,9 +262,10 @@ |
std::string error; |
base::NativeLibrary library = base::LoadNativeLibrary(plugins[i].path, |
&error); |
- DLOG_IF(WARNING, !library) << "Unable to load plugin " |
- << plugins[i].path.value() << " " |
- << error; |
+ VLOG_IF(1, !library) << "Unable to load plugin " |
+ << plugins[i].path.value() << " " |
+ << error; |
+ |
(void)library; // Prevent release-mode warning. |
} |
} |