summaryrefslogtreecommitdiffstats
path: root/src/engine/mix.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/engine/mix.hpp')
-rw-r--r--src/engine/mix.hpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/engine/mix.hpp b/src/engine/mix.hpp
index a4cd16d8..792e4e94 100644
--- a/src/engine/mix.hpp
+++ b/src/engine/mix.hpp
@@ -18,11 +18,13 @@
#ifndef MIX_HPP
#define MIX_HPP
-#include <iostream>
+#include "raul/log.hpp"
#include "interface/PortType.hpp"
#include "Buffer.hpp"
#include "Context.hpp"
+using namespace Raul;
+
namespace Ingen {
inline void
@@ -74,7 +76,7 @@ mix(Context& context, Buffer* dst, const Buffer*const* srcs, uint32_t num_srcs)
break;
default:
- std::cerr << "ERROR: Mix of unsupported buffer types" << std::endl;
+ error << "Mix of unsupported buffer types" << std::endl;
return;
}
}