xcode8+ios10NSLog打印信息不全 自定义NSLog输出

最近发现xcode8更新后NSLog信息经常打印不全,网上搜了各种方法,最后还是使用printf代替了系统的NSLog.而且在log时加入了打印代码位置的小功能,非常好用!

#define YFLog(format, ...) printf("class: < %s:(%d行) > method: %s \n%s\n", [[[NSString stringWithUTF8String:__FILE__] lastPathComponent] UTF8String], __LINE__, __PRETTY_FUNCTION__, [[NSString stringWithFormat:(format), ##__VA_ARGS__] UTF8String] )

你可能感兴趣的:(xcode8+ios10NSLog打印信息不全 自定义NSLog输出)