log

2019-05-15  本文已影响0人  失忆的程序员

/** log... */

#ifdef DEBUG

//#define XPFLog(fmt, ...) NSLog((@"[函数名:%s]" "[行号:%d]" fmt),__FUNCTION__, __LINE__, ##__VA_ARGS__)

#define XPFLog(format, ...) printf("class: <%p %s:(%d) > method: %s \n%s\n", self, [[[NSString stringWithUTF8String:__FILE__] lastPathComponent] UTF8String], __LINE__, __PRETTY_FUNCTION__, [[NSString stringWithFormat:(format), ##__VA_ARGS__] UTF8String])

#else

#define XPFLog(...)

#endif

上一篇下一篇

猜你喜欢

热点阅读