Skip to content

Instantly share code, notes, and snippets.

@im6e
Created February 1, 2014 10:27
Show Gist options
  • Save im6e/8750481 to your computer and use it in GitHub Desktop.
Save im6e/8750481 to your computer and use it in GitHub Desktop.
NSLog macro
#ifdef DEBUG
# ifndef DLog
# define DLog(__FORMAT__,...) NSLog((@"%s [Line %d] " __FORMAT__), __PRETTY_FUNCTION__, __LINE__, ##__VA_ARGS__)
# endif
#else
# ifndef DLog
# define DLog(...) /* */
# endif
#endif /* if DEBUG */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment