I got a bunch of NSLog statements in my code. Is there anyway I can suppress them from executing in production, but execute when I'm developing? I want to not comment them out, and them put them back in when developing, as it's a hassle.
|
|
Example:
This is what I use in my
This prints console lines (only when debugging) with line number, class name, and method name like so:
|
||||
|
|
|
You could make a proxy and define it as a preprocessor macro:
Then you'd use MyLog() instead of NSLog() in your code and when not compiling in debug mode the NSLog would be replaced with a no-op. |
|||
|
|
|
As an extension to CajunLuke's answer, I can only advise you to use this: http://kdl.nobugware.com/post/2009/03/11/better-nslog/ |
|||
|
|
|
Wrap them with a macro. It's unfortunate that Apple doesn't do this already, with a "canned" solution, but many folks do it, and there are a number of examples on the web. Something like:
(Hopefully got that right -- copied by hand from another screen) |
||||
|
|