Skip to content

Instantly share code, notes, and snippets.

@nxax
Created August 21, 2012 13:10
Show Gist options
  • Save nxax/3415284 to your computer and use it in GitHub Desktop.
Save nxax/3415284 to your computer and use it in GitHub Desktop.
iOS log macros
// http://stackoverflow.com/questions/969130/nslog-tips-and-tricks
#ifdef DEBUG
# define DLog(fmt, ...) NSLog((@"%s [Line %d] " fmt), __PRETTY_FUNCTION__, __LINE__, ##__VA_ARGS__);
#else
# define DLog(...)
#endif
// ALog always displays output regardless of the DEBUG setting
#define ALog(fmt, ...) NSLog((@"%s [Line %d] " fmt), __PRETTY_FUNCTION__, __LINE__, ##__VA_ARGS__);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment