Skip to content

Instantly share code, notes, and snippets.

@onmyway133
Created July 22, 2014 03:46
Show Gist options
  • Save onmyway133/1c3f68e4a513cafce3f4 to your computer and use it in GitHub Desktop.
Save onmyway133/1c3f68e4a513cafce3f4 to your computer and use it in GitHub Desktop.
Log
// http://stackoverflow.com/questions/969130/how-to-print-out-the-method-name-and-line-number-and-conditionally-disable-nslog/969291#969291
#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