This question already has an answer here:
Since the project I'm currently working on has grown to be to be easily debugged, with lots of events, notifications, etc firing up at different points of time, I'm looking for an easy way to just log (in the console) the method being called along with its parameters.
E.g.
Object: someObj, Method: doSthWith:, Param: 3
Object: anotherObj, Method: doSthElse
...
I know I could (obviously) do that by commenting/uncommenting NSLog calls to all of them, but I think it'd be far more practical if I could just enable/disable global logging of method calls by a single definition.
So, how would you go about it? Any built-in functions for that? Any ideas?
