1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-02 06:04:39 -04:00

Restore some logging.

This commit is contained in:
Hexameron
2014-05-21 11:27:55 +01:00
parent 280346e39b
commit 1361e55f47
4 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -260,7 +260,7 @@ void PluginManager::loadPlugins(const QDir& dir)
QPluginLoader* loader = new QPluginLoader(pluginsDir.absoluteFilePath(fileName));
PluginInterface* plugin = qobject_cast<PluginInterface*>(loader->instance());
if(loader->isLoaded())
qDebug("loaded plugin %s", qPrintable(fileName));
qWarning("loaded plugin %s", qPrintable(fileName));
if(plugin != NULL) {
m_plugins.append(Plugin(fileName, loader, plugin));
} else {