Skip to content

Instantly share code, notes, and snippets.

@hunje
Last active December 19, 2015 08:19
Show Gist options
  • Save hunje/5925302 to your computer and use it in GitHub Desktop.
Save hunje/5925302 to your computer and use it in GitHub Desktop.
Log macro for iOS
#if defined(DEBUG)
#define HTLog(__VA_ARGS__) NSLog(__VA_ARGS__)
#define HTLog2(fmt, ...) NSLog((fmt), ##__VAR_ARGS__)
#else
#define HTLog(__VA_ARGS__) while (FALSE) { }
#endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment