美文网首页
只在debug模式打印log

只在debug模式打印log

作者: 伏特加 | 来源:发表于2017-01-10 19:49 被阅读36次
    #ifndef __OPTIMIZE__
    #define NSLog(fmt, ...) NSLog((@"\n╠🔨 [文件名:%@]\n" "[函数名:%s" " +%d] \n" fmt" 🔨╣\n\n"), [[[NSString stringWithCString:__FILE__ encoding:NSUTF8StringEncoding] componentsSeparatedByString:@"/"] lastObject], __PRETTY_FUNCTION__, __LINE__, ##__VA_ARGS__)
    #else
    #define NSLog(...) {}
    #endif
    

    使用方法:

    NSLog(@"要打印的内容");//覆盖了系统的NSLog
    

    相关文章

      网友评论

          本文标题:只在debug模式打印log

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