diff options
author | David Robillard <d@drobilla.net> | 2012-05-10 06:24:07 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2012-05-10 06:24:07 +0000 |
commit | 0c9e861caa8b1eed5068942edc35d5f91bac816e (patch) | |
tree | b241856ddf49e1b1192f8ea442d1733d9d31b2f2 /src/server/PluginImpl.cpp | |
parent | 8ec295a0f2a40086ed83e8d2ad8ad38c8125bcb4 (diff) | |
download | ingen-0c9e861caa8b1eed5068942edc35d5f91bac816e.tar.gz ingen-0c9e861caa8b1eed5068942edc35d5f91bac816e.tar.bz2 ingen-0c9e861caa8b1eed5068942edc35d5f91bac816e.zip |
Work towards translatable strings and a cleaner log interface.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4338 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/server/PluginImpl.cpp')
-rw-r--r-- | src/server/PluginImpl.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/server/PluginImpl.cpp b/src/server/PluginImpl.cpp index b8ba9c2b..cec70c06 100644 --- a/src/server/PluginImpl.cpp +++ b/src/server/PluginImpl.cpp @@ -18,7 +18,6 @@ #include "PluginImpl.hpp" using namespace std; -using namespace Raul; namespace Ingen { namespace Server { @@ -27,7 +26,7 @@ void PluginImpl::load() { if (!_module) { - debug << "Loading plugin library " << _library_path << endl; + Raul::debug << "Loading plugin library " << _library_path << endl; _module = new Glib::Module(_library_path, Glib::MODULE_BIND_LOCAL); if (!(*_module)) delete _module; @@ -38,7 +37,7 @@ void PluginImpl::unload() { if (_module) { - debug << "Unloading plugin library " << _library_path << endl; + Raul::debug << "Unloading plugin library " << _library_path << endl; delete _module; _module = NULL; } |