Skip to content

Instantly share code, notes, and snippets.

@atomicbird
Created May 1, 2009 23:28
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 atomicbird/105321 to your computer and use it in GitHub Desktop.
Save atomicbird/105321 to your computer and use it in GitHub Desktop.
// Define a debug-build-only NSLog wrapper. DLog printing will only happen in debug builds.
#ifdef DEBUG
#define DLog(...) NSLog(__VA_ARGS__)
#else
#define DLog(...)
#endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment