首页 > 其他 > 详细

第四十二篇、自定义Log打印

时间:2016-10-01 12:27:25      阅读:211      评论:0      收藏:0      [点我收藏+]

在开发的过程中,打印调试日志是一项比不可少的工程,但是在iOS 10中NSLog打印日志被屏蔽了,就不得不使用自定义Log

#ifdef DEBUG
#define LRString [NSString stringWithFormat:@"%s",__FILE__].lastPathComponent
#define LRLog(...) NSLog(@"%@ 第%d行 \n%@\n\n",LRString,__LINE__,[NSString stringWithFormat:__VA_ARGS__])
#else
#define LRLog(...)
#endif

 

#ifdef DEBUG
#define LRString [NSString stringWithFormat:@"%s", __FILE__].lastPathComponent
#define LRLog(...)  printf("%s 第%d行: %s\n\n", [LRString UTF8String] ,__LINE__, [[NSString stringWithFormat:__VA_ARGS__] UTF8String]);
#else
#define LRLog(...)
#endif

使用UTF8String的原因就是printf是C语言的,所以需要通过这个方法转换一下才能打印。

第四十二篇、自定义Log打印

原文:http://www.cnblogs.com/HJQ2016/p/5925532.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!