summaryrefslogtreecommitdiffstats
path: root/src/libs/engine/PluginImpl.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2008-08-17 06:50:15 +0000
committerDavid Robillard <d@drobilla.net>2008-08-17 06:50:15 +0000
commite0743e9d9b15fb2731e26bf5700413c083a89186 (patch)
tree5f07e29faf213fd544f420c7d512d5e5342db059 /src/libs/engine/PluginImpl.cpp
parent03acefb8271d2abb5160b349d8e70687af6965fb (diff)
downloadingen-e0743e9d9b15fb2731e26bf5700413c083a89186.tar.gz
ingen-e0743e9d9b15fb2731e26bf5700413c083a89186.tar.bz2
ingen-e0743e9d9b15fb2731e26bf5700413c083a89186.zip
Tidy.
git-svn-id: http://svn.drobilla.net/lad/ingen@1415 a436a847-0d15-0410-975c-d299462d15a1
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;
}