Skip to content

Instantly share code, notes, and snippets.

@nroberson
Created April 16, 2014 03:34
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 nroberson/10803515 to your computer and use it in GitHub Desktop.
Save nroberson/10803515 to your computer and use it in GitHub Desktop.
Objective-C Debug Log Defines
#ifndef NDEBUG
# define DLOG(format, ...) NSLog((@":NR: %s (L: %d) " format), __PRETTY_FUNCTION__, __LINE__, ##__VA_ARGS__)
#else
# define DLOG(...)
#endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment