In Xcode, the debugger lists the date next to each outputted line. I really want to reduce the amount of visual "noise" in the debugger, so how can I disable the dates from showing?
1 Answer
You can use printf() instead of NSLog(), but its a bit tricky.
Taken from here, where you can find more info on this.