Reputation: 239
How can I remove date and process ID from output window in XCode? They only take up a lot of space without real value.
Upvotes: 1
Views: 363
Reputation: 46563
Use this macro, this will override the default behavior of NSLog,
#define NSLog(STRING, ...) printf("%s\n", [[NSString stringWithFormat:STRING, ##__VA_ARGS__] UTF8String]);
Upvotes: 3