Enabled timers and logging in NDEBUG builds
This commit is contained in:
parent
2c65b95e49
commit
1417b40fdf
1 changed files with 3 additions and 3 deletions
|
|
@ -49,17 +49,17 @@
|
||||||
*/
|
*/
|
||||||
/*@{*/
|
/*@{*/
|
||||||
|
|
||||||
|
#define TIMERS_ON 1
|
||||||
|
|
||||||
#if defined(DEBUG_MODE)
|
#if defined(DEBUG_MODE)
|
||||||
#define VERIFY_ON 1
|
#define VERIFY_ON 1
|
||||||
#define TRACING_ON 1
|
#define TRACING_ON 1
|
||||||
#define DEBUG_ON 1
|
#define DEBUG_ON 1
|
||||||
#define TIMERS_ON 1
|
|
||||||
#elif defined(NDEBUG)
|
#elif defined(NDEBUG)
|
||||||
#define NO_ASSERTS 1
|
#define NO_ASSERTS 1
|
||||||
#define NO_LOGGING 1
|
//#define NO_LOGGING 1
|
||||||
#else
|
#else
|
||||||
#define TRACING_ON 1 // use --trace X to enable
|
#define TRACING_ON 1 // use --trace X to enable
|
||||||
#define TIMERS_ON 1
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/*@}*/
|
/*@}*/
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue