From ca9cddce7fab70614b4cf7df8546eb12daf30058 Mon Sep 17 00:00:00 2001 From: Andrew Belt Date: Thu, 21 Mar 2019 07:10:18 -0400 Subject: [PATCH] Remove error message for plugin loading --- src/plugin.cpp | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/plugin.cpp b/src/plugin.cpp index 5abbe51a..57eec4fd 100644 --- a/src/plugin.cpp +++ b/src/plugin.cpp @@ -247,13 +247,9 @@ static void loadPlugins(std::string path) { if (!system::isDirectory(pluginPath)) continue; if (!loadPlugin(pluginPath)) { - message += string::f("Could not load plugin %s\n", pluginPath.c_str()); + // Ignore bad plugins. They are reported in log.txt. } } - if (!message.empty()) { - message += "See log for details."; - osdialog_message(OSDIALOG_WARNING, OSDIALOG_OK, message.c_str()); - } } /** Returns 0 if successful */