#if DEBUG
#define NSLog(format, ...) \
do { \
NSLog(@"<%@ : %d : %s>------: %@", \
[[NSString stringWithUTF8String:__FILE__] lastPathComponent], \
__LINE__, \
__FUNCTION__, \
[NSString stringWithFormat:format, ##__VA_ARGS__]); \
} while(0)
#else
#define NSLog(format, ...) do{ } while(0)
#endif
网友评论