I want to set the DEBUG value to 1 or 0 from code. After specific event answer and not from
other C Flags?
#if DEBUG==1
#define DBLog(format, ...) NSLog(@"%s:%@", __PRETTY_FUNCTION__,[NSString stringWithFormat:format, ## __VA_ARGS__]);
#define MARK DBLog(@"%s", __PRETTY_FUNCTION__);
#else
#define DBLog(format, ...)
#define MARK
#endif