Created
August 25, 2011 16:24
-
-
Save elado/1171075 to your computer and use it in GitHub Desktop.
Turn off logging in Obj-C
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#define GB_ALLOW_LOG 1 | |
#if GB_ALLOW_LOG | |
#define GB_LOG(fmt, ...) NSLog(fmt, ##__VA_ARGS__) | |
#else | |
#define GB_LOG(fmt, ...) | |
#endif |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment