Skip to content

Instantly share code, notes, and snippets.

@sag333ar
Last active December 28, 2015 09:59
Show Gist options
  • Save sag333ar/7482717 to your computer and use it in GitHub Desktop.
Save sag333ar/7482717 to your computer and use it in GitHub Desktop.
Enable console logs only for Debug mode, while sending release disable Debug_mode to turn off console logs.
#define DEBUG_MODE
#ifdef DEBUG_MODE
#define STLog(x,...) NSLog( @"<%p %@:(%d)> %@", self, [[NSString stringWithUTF8String:__FILE__] lastPathComponent], __LINE__, [NSString stringWithFormat:(x), ##__VA_ARGS__])
#else
#define STLog
#endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment