Skip to content

Instantly share code, notes, and snippets.

@OliverLetterer
Created August 15, 2011 09:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save OliverLetterer/1145967 to your computer and use it in GitHub Desktop.
Save OliverLetterer/1145967 to your computer and use it in GitHub Desktop.
DLog
# define _DLog(format, ...) NSLog((@"%s [%d] " format), __PRETTY_FUNCTION__, __LINE__, ##__VA_ARGS__)
# ifdef DEBUG
# define DLog(format, ...) _DLog(format, ##__VA_ARGS__)
# else
# define DLog(...)
# endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment