diff --git a/src/plugins/pluginmanager.cc b/src/plugins/pluginmanager.cc index 70371360e..d357a3e44 100644 --- a/src/plugins/pluginmanager.cc +++ b/src/plugins/pluginmanager.cc @@ -34,6 +34,7 @@ #include #include +#include #include #include #include @@ -415,6 +416,9 @@ bool RsPluginManager::loadPlugin(const std::string& plugin_name,bool first_time) pinfo.info_string = "" ; _accepted_hashes.insert(pinfo.file_hash) ; // do it now, to avoid putting in list a plugin that might have crashed during the load. + RsInfo() << "PLUGINSDIR: Successfully loaded plugin in memory: " + << (p ? p->getPluginName() : "Unknown") + << " from path: " << plugin_name; return true; }