Skip to content

Instantly share code, notes, and snippets.

@amudi
Created December 15, 2010 06:19
Show Gist options
  • Save amudi/741693 to your computer and use it in GitHub Desktop.
Save amudi/741693 to your computer and use it in GitHub Desktop.
[iOS] logging macro for Objective-C
#ifdef __OBJC__
#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__);
#endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment