After upgrading to Xcode 8 GM today i noticed that NSLog isn't printing the whole log-message to the console. This is especially noticeable when working against an API that downloads a lot of information, like a REST API download all the products from a database, it only shows the first 30 keys on the first product, the rest of the information is clipped...
I'm printing arrays and dictionaries, if that makes any difference.
NSDictionary *allProducts = responseFromAPI;
NSLog(@"All products:%@", allProducts);
Have anyone else noticed this? And does anybody know how to fix this?