Tim Mayberry
9d67d22e70
Most of these are not errors that are intended for the user, they are only intended for developers so don't send them to PBD::error. The errors that may be relevant to users should be handled in libardour or the GUI in response to return values
13 lines
487 B
C
13 lines
487 B
C
#ifndef PORTAUDIO_BACKEND_DEBUG_H
|
|
#define PORTAUDIO_BACKEND_DEBUG_H
|
|
|
|
#include "ardour/debug.h"
|
|
|
|
#define DEBUG_AUDIO(msg) DEBUG_TRACE (PBD::DEBUG::BackendAudio, msg);
|
|
#define DEBUG_MIDI(msg) DEBUG_TRACE (PBD::DEBUG::BackendMIDI, msg);
|
|
#define DEBUG_TIMING(msg) DEBUG_TRACE (PBD::DEBUG::BackendTiming, msg);
|
|
#define DEBUG_THREADS(msg) DEBUG_TRACE (PBD::DEBUG::BackendThreads, msg);
|
|
#define DEBUG_PORTS(msg) DEBUG_TRACE (PBD::DEBUG::BackendPorts, msg);
|
|
|
|
#endif // PORTAUDIO_BACKEND_DEBUG_H
|