Skip to content

Instantly share code, notes, and snippets.

@pietrorea
Created August 31, 2014 14:07
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 pietrorea/fbd09d5496bd018f6354 to your computer and use it in GitHub Desktop.
Save pietrorea/fbd09d5496bd018f6354 to your computer and use it in GitHub Desktop.
debugLog preprocessor macro
//Add to Project-Prefix.pch
#ifdef DEBUG
#define debugLog(...) NSLog(__VA_ARGS__)
#else
#define debugLog(...) // Nothing
#endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment