Skip to content

Instantly share code, notes, and snippets.

@itod
Created February 13, 2013 19:23
Show Gist options
  • Select an option

  • Save itod/4947320 to your computer and use it in GitHub Desktop.

Select an option

Save itod/4947320 to your computer and use it in GitHub Desktop.
Debug logging
#ifdef NDEBUG
#define TDLog(fmt, ...) while (0) {}
#else
#define TDLog(fmt, ...) do { NSLog(fmt, ##__VA_ARGS__); } while (0)
#endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment