summaryrefslogtreecommitdiffstats
path: root/src/engine/BufferFactory.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/engine/BufferFactory.cpp')
-rw-r--r--src/engine/BufferFactory.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/engine/BufferFactory.cpp b/src/engine/BufferFactory.cpp
index 02104b92..86862ef8 100644
--- a/src/engine/BufferFactory.cpp
+++ b/src/engine/BufferFactory.cpp
@@ -16,7 +16,7 @@
*/
#include <algorithm>
-#include <iostream>
+#include "raul/log.hpp"
#include "shared/LV2URIMap.hpp"
#include "AudioBuffer.hpp"
#include "EventBuffer.hpp"
@@ -26,6 +26,8 @@
#include "Driver.hpp"
#include "ThreadManager.hpp"
+using namespace Raul;
+
namespace Ingen {
using namespace Shared;
@@ -65,7 +67,7 @@ BufferFactory::get(Shared::PortType type, size_t size, bool force_create)
if (ThreadManager::current_thread_id() != THREAD_PROCESS) {
return create(type, size);
} else {
- cerr << "ERROR: Failed to obtain buffer" << endl;
+ error << "Failed to obtain buffer" << endl;
return Ref();
}
}
@@ -105,7 +107,7 @@ BufferFactory::create(Shared::PortType type, size_t size)
size = 32; // FIXME
buffer = new ObjectBuffer(*this, std::max(size, sizeof(LV2_Object) + sizeof(void*)));
} else {
- cout << "ERROR: Failed to create buffer of unknown type" << endl;
+ error << "Failed to create buffer of unknown type" << endl;
return Ref();
}