解决Xcode8 控制台打印内容被截取

升级到Xcode8后,控制台NSLog打印的内容被截取了显示不全。
可以用下面的宏定义来打印全

#if DEBUG
#define NSLog(format, ...) do {                                             \
fprintf(stderr, "<%s : line(%d)> %s\n",     \
[[[NSString stringWithUTF8String:__FILE__] lastPathComponent] UTF8String],  \
__LINE__, __func__);                        \
printf("%s\n", [[NSString stringWithFormat:format, ##__VA_ARGS__] UTF8String]);           \
fprintf(stderr, "-------------------\n");   \
} while (0)
#else
#define NSLog(format, ...) nil
#endif

你可能感兴趣的:(解决Xcode8 控制台打印内容被截取)