使用下面代码打印行号,功能函数,以及要打印的内容
#if DEBUG #define MBLog(format, ...) NSLog((@"%s--[Line:%d]--" format), __func__, __LINE__, ##__VA_ARGS__) #else #define MBLog(format, ...) nil #endif
使用:
、
打印信息为:
时间: 2024-11-10 16:48:59
使用下面代码打印行号,功能函数,以及要打印的内容
#if DEBUG #define MBLog(format, ...) NSLog((@"%s--[Line:%d]--" format), __func__, __LINE__, ##__VA_ARGS__) #else #define MBLog(format, ...) nil #endif
使用:
、
打印信息为: