xref: /haiku/src/servers/bluetooth/Debug.h (revision ed24eb5ff12640d052171c6a7feba37fab8a75d1)
1 /*
2  * Copyright 2016, Haiku, Inc. All Rights Reserved.
3  * Distributed under the terms of the MIT License.
4  *
5  * Authors:
6  *		Augustin Cavalier, <waddlesplash>
7  */
8 #ifndef _BLUETOOTH_SERVER_DEBUG_H
9 #define _BLUETOOTH_SERVER_DEBUG_H
10 
11 //#ifdef TRACE_BLUETOOTH_SERVER
12 #if 1
13 #	define TRACE_BT(x...) printf(x)
14 #else
15 #	define TRACE_BT(x)
16 #endif
17 
18 #endif
19