Enabled timers and logging in NDEBUG builds

This commit is contained in:
John Wiegley 2010-06-05 04:49:10 -04:00
parent 2c65b95e49
commit 1417b40fdf

View file

@ -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
/*@}*/ /*@}*/