美文网首页
iOS开发自定义调试Log

iOS开发自定义调试Log

作者: 几分心动i | 来源:发表于2017-07-10 17:05 被阅读0次
#ifdef DEBUG
#define YSLog(fmt, ...) printf("%s %s [line %d] ###Log %s\n", [CurrentDateString() UTF8String], [[[[NSString alloc] initWithUTF8String:__FILE__] componentsSeparatedByString:@"/"].lastObject UTF8String], __LINE__,  [[NSString stringWithFormat:fmt, ## __VA_ARGS__] UTF8String])
#else
#define YSLog(fmt, ...)
#endif

相关文章

网友评论

      本文标题:iOS开发自定义调试Log

      本文链接:https://www.haomeiwen.com/subject/arkuhxtx.html