summaryrefslogtreecommitdiffstats
path: root/src/server/PluginImpl.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/server/PluginImpl.cpp')
-rw-r--r--src/server/PluginImpl.cpp5
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;
}