Why the console output shows incomplete in Xcode 8 / iOS 10?
A temporary solution, just redefine all NSLOG to printf in a global header file.
NSLOG
printf
#define NSLog(FORMAT, ...) printf("%s\n", [[NSString stringWithFormat:FORMAT, ##__VA_ARGS__] UTF8String]);