首页 > 代码库 > DEBUG LOG

DEBUG LOG

#ifdef DEBUG 

#define DLog(...) NSLog(__VA_ARGS__) 

#else 

#define DLog(...) /* */

#endif