From e0743e9d9b15fb2731e26bf5700413c083a89186 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 17 Aug 2008 06:50:15 +0000 Subject: Tidy. git-svn-id: http://svn.drobilla.net/lad/ingen@1415 a436a847-0d15-0410-975c-d299462d15a1 --- src/libs/engine/PluginImpl.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/libs/engine/PluginImpl.cpp') 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; } -- cgit v1.2.1