diff options
Diffstat (limited to 'src/qmmpui/general.cpp')
| -rw-r--r-- | src/qmmpui/general.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/qmmpui/general.cpp b/src/qmmpui/general.cpp index e072344a0..fed8221b4 100644 --- a/src/qmmpui/general.cpp +++ b/src/qmmpui/general.cpp @@ -45,9 +45,10 @@ static void checkFactories() QPluginLoader loader(pluginsDir.absoluteFilePath(fileName)); QObject *plugin = loader.instance(); if (loader.isLoaded()) - { qDebug("General: plugin loaded - %s", qPrintable(fileName)); - } + else + qWarning("General: %s", qPrintable(loader.errorString ())); + GeneralFactory *factory = 0; if (plugin) factory = qobject_cast<GeneralFactory *>(plugin); |
