Could somebody go over how to exempt NSLog's from a release build of an app? Also, does it matter if comments are left in a release version? Thanks!
|
Use a macro like
Comments absolutely don't matter. They are only in your source code, not the compiled output. You don't submit your source code to Apple, only the built copy of your app. |
|||||||
|
|
What I do to exclude NSLogs is to add this to the prefix file:
That way, when compiled, all NSLogs will be replaced with nothing, it will be like an empty line. As for the comments, they never make it into the binary at all, those are ONLY for whoever can see the source code. |
|||||||||||||
|
|
The newer versions of the Xcode projects usually include a macro definition
It doesn't really matter though, in my experience sometimes you don't want the console to be vomiting a bunch of logs, you probably only need them at certain occasions. |
|||||
|
%sof__PRETTY_FUNCTION__to list where the log comes from. – Hot Licks Apr 9 '12 at 2:20