Xcode 8 Log显示不全问题

1.替换系统Log 输出带 类名 行数

#ifdef DEBUG

#define NSLog(FORMAT, ...) fprintf(stderr,"%s [line: %d] %s\n",[[[NSString stringWithUTF8String:__FILE__] lastPathComponent] UTF8String], __LINE__, [[NSString stringWithFormat:FORMAT, ##__VA_ARGS__] UTF8String]);

#endif

把以上代码写到自己的pch 文件里面就行了

你可能感兴趣的:(Xcode 8 Log显示不全问题)