Skip to content

Instantly share code, notes, and snippets.

@DaveAtDog
Last active December 27, 2015 11:49
Show Gist options
  • Save DaveAtDog/7321692 to your computer and use it in GitHub Desktop.
Save DaveAtDog/7321692 to your computer and use it in GitHub Desktop.
DLog - NSLog replacement - Stick in *-Prefix.pch file. Storing here for my own sanity.
#ifdef DEBUG
#define DLog(fmt, ...) NSLog((@"%s [Line %d] " fmt), __PRETTY_FUNCTION__, __LINE__, ##__VA_ARGS__);
#else
#define DLog(...)
#endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment