summaryrefslogtreecommitdiffstats
path: root/subsurface-core
diff options
context:
space:
mode:
Diffstat (limited to 'subsurface-core')
-rw-r--r--subsurface-core/pluginmanager.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/subsurface-core/pluginmanager.cpp b/subsurface-core/pluginmanager.cpp
index 5c0f22525..28c978280 100644
--- a/subsurface-core/pluginmanager.cpp
+++ b/subsurface-core/pluginmanager.cpp
@@ -40,8 +40,10 @@ void PluginManager::loadPlugins()
if(!plugin)
continue;
- if (ISocialNetworkIntegration *social = qobject_cast<ISocialNetworkIntegration*>(plugin))
+ if (ISocialNetworkIntegration *social = qobject_cast<ISocialNetworkIntegration*>(plugin)) {
+ qDebug() << "Adding the plugin: " << social->socialNetworkName();
_socialNetworks.push_back(social);
+ }
}
}