Skip to content

Instantly share code, notes, and snippets.

@alattis
Last active December 10, 2015 02:58
Show Gist options
  • Save alattis/4371327 to your computer and use it in GitHub Desktop.
Save alattis/4371327 to your computer and use it in GitHub Desktop.
pretty logging when added to the prefix header, logs nothing when the OPTIMIZE build flag is present
#ifndef __OPTIMIZE__
# define NSLog(fmt, ...) NSLog((@"%s [Line %d] " fmt), __PRETTY_FUNCTION__, __LINE__, ##__VA_ARGS__)
#else
# define NSLog(...) {}
#endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment