欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

ios NSlog打印日志

程序员文章站 2022-08-09 17:58:05
ios nslog打印日志。 //-------------------打印日志------------------------- //printf输出 #ifdef debug #def...

ios nslog打印日志。

//-------------------打印日志-------------------------
//printf输出
#ifdef debug
#define dlog(...) printf("%s %s 第%d行: %s\n",__time__, __pretty_function__ ,__line__, [[nsstring stringwithformat:__va_args__] utf8string]);
#else
#define dlog(...)
#endif

//nslog输出
//debug  模式下打印日志,当前行
#ifdef debug
#define dlog(fmt, ...) nslog((@"%s [line %d] " fmt), __pretty_function__, __line__, ##__va_args__);
//#define ddlog(...) nslog((@"%s [line %d] %@"), __pretty_function__, __line__, ##__va_args__);
#else
#define dlog(...)
#endif