1 #ifndef PORTAUDIO_BACKEND_DEBUG_H
2 #define PORTAUDIO_BACKEND_DEBUG_H
3 
4 #include "ardour/debug.h"
5 
6 #define DEBUG_AUDIO(msg) DEBUG_TRACE (PBD::DEBUG::BackendAudio, msg);
7 #define DEBUG_MIDI(msg) DEBUG_TRACE (PBD::DEBUG::BackendMIDI, msg);
8 #define DEBUG_TIMING(msg) DEBUG_TRACE (PBD::DEBUG::BackendTiming, msg);
9 #define DEBUG_THREADS(msg) DEBUG_TRACE (PBD::DEBUG::BackendThreads, msg);
10 #define DEBUG_PORTS(msg) DEBUG_TRACE (PBD::DEBUG::BackendPorts, msg);
11 
12 #endif // PORTAUDIO_BACKEND_DEBUG_H
13