Skip to content

Instantly share code, notes, and snippets.

@sbrocket
Created December 17, 2008 08:13
Show Gist options
  • Select an option

  • Save sbrocket/36998 to your computer and use it in GitHub Desktop.

Select an option

Save sbrocket/36998 to your computer and use it in GitHub Desktop.
// Debug-build only logging macro
#ifdef DEBUG
#define debugLog(format, ...) NSLog((format), ##__VA_ARGS__)
#else
#define debugLog(format, ...) // Nothing
#endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment