From 2d3e27ef80e4fc8704390ea7a878068b5ae6a370 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Thu, 7 Jan 2010 02:39:38 +0000 Subject: Fix compilation with --log-debug. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2356 a436a847-0d15-0410-975c-d299462d15a1 --- src/client/OSCClientReceiver.cpp | 4 ++++ src/engine/OSCEngineReceiver.cpp | 5 +++-- src/engine/PatchImpl.cpp | 7 +++---- src/engine/internals/Note.cpp | 5 +++-- src/engine/internals/Trigger.cpp | 1 + src/shared/OSCSender.cpp | 5 +++++ 6 files changed, 19 insertions(+), 8 deletions(-) (limited to 'src') diff --git a/src/client/OSCClientReceiver.cpp b/src/client/OSCClientReceiver.cpp index bb3c098a..9a1808a2 100644 --- a/src/client/OSCClientReceiver.cpp +++ b/src/client/OSCClientReceiver.cpp @@ -38,7 +38,11 @@ OSCClientReceiver::OSCClientReceiver(int listen_port, SharedPtrsize(); ++i) { - assert(process_order->at(i)); - debug << " " << process_order->at(i)->path() << endl; - } + for (size_t i=0; i < compiled_patch->size(); ++i) + debug << " " << compiled_patch->at(i).node()->path() << endl; debug << "}" << endl; #endif diff --git a/src/engine/internals/Note.cpp b/src/engine/internals/Note.cpp index 76659cfd..9ed45c96 100644 --- a/src/engine/internals/Note.cpp +++ b/src/engine/internals/Note.cpp @@ -35,6 +35,7 @@ #define LOG(s) s << "[NoteNode] " using namespace std; +using namespace Raul; namespace Ingen { namespace Internals { @@ -353,7 +354,7 @@ NoteNode::free_voice(ProcessContext& context, uint32_t voice, FrameTime time) } else { // No new note for voice, deactivate (set gate low) #ifdef LOG_DEBUG - LOG(debug) << "Note off: key " << (int)note_num << " voice " << voice << endl; + LOG(debug) << "Note off: key " << (*_voices)[voice].note << " voice " << voice << endl; #endif ((AudioBuffer*)_gate_port->buffer(voice).get())->set_value(0.0f, context.start(), time); (*_voices)[voice].state = Voice::FREE; @@ -368,7 +369,7 @@ NoteNode::all_notes_off(ProcessContext& context, FrameTime time) assert(time - context.start() < _buffer_size); #ifdef LOG_DEBUG - LOG(debug) << "All notes off @ " << offset << endl; + LOG(debug) << "All notes off @ " << time << endl; #endif // FIXME: set all keys to Key::OFF? diff --git a/src/engine/internals/Trigger.cpp b/src/engine/internals/Trigger.cpp index 7c05a1d3..440e9a63 100644 --- a/src/engine/internals/Trigger.cpp +++ b/src/engine/internals/Trigger.cpp @@ -26,6 +26,7 @@ #include "OutputPort.hpp" #include "ProcessContext.hpp" #include "util.hpp" +#include "ingen-config.h" #define LOG(s) s << "[TriggerNode] " diff --git a/src/shared/OSCSender.cpp b/src/shared/OSCSender.cpp index 2d9cbbc4..151a3f40 100644 --- a/src/shared/OSCSender.cpp +++ b/src/shared/OSCSender.cpp @@ -20,6 +20,7 @@ #include #include "raul/log.hpp" #include "OSCSender.hpp" +#include "ingen-config.h" using namespace std; using namespace Raul; @@ -82,6 +83,10 @@ OSCSender::send(const char *path, const char *types, ...) if (!_enabled) return 0; +#ifdef LOG_DEBUG + info << "[OSCSender] " << path << " (" << types << ")" << endl; +#endif + va_list args; va_start(args, types); -- cgit v1.2.1