首页 > 代码库 > 自定义Log

自定义Log

自定义Log

#ifdef DEBUG

#define ZRLog(...) NSLog(__VA_ARGS__)

#else

#define ZRLog(...)

#endif