summaryrefslogtreecommitdiffstats
path: root/src/libs/engine/PluginImpl.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/libs/engine/PluginImpl.cpp')
-rw-r--r--src/libs/engine/PluginImpl.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libs/engine/PluginImpl.cpp b/src/libs/engine/PluginImpl.cpp
index 709f18bd..215cf4ce 100644
--- a/src/libs/engine/PluginImpl.cpp
+++ b/src/libs/engine/PluginImpl.cpp
@@ -31,7 +31,7 @@ void
PluginImpl::load()
{
if (!_module) {
- cerr << "Loading " << _library_path << " library" << endl;
+ //cerr << "Loading " << _library_path << " library" << endl;
_module = new Glib::Module(_library_path, Glib::MODULE_BIND_LOCAL);
if (!(*_module))
delete _module;
@@ -43,7 +43,7 @@ void
PluginImpl::unload()
{
if (_module) {
- cerr << "Unloading " << _library_path << endl;
+ //cerr << "Unloading " << _library_path << endl;
delete _module;
_module = NULL;
}