Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
stackoverflow.com/questions/2783223/… possible duplicate – user982270 Feb 27 at 6:37

marked as duplicate by Martin R, Josh Caswell, Monolo, Sindre Sorhus, Werner Vesterås Feb 27 at 10:59

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.