Skip to content

Instantly share code, notes, and snippets.

@efremidze
Last active May 10, 2017 23:59
Show Gist options
  • Save efremidze/a91bab43a6c87a41ae6ef9df93a40c74 to your computer and use it in GitHub Desktop.
Save efremidze/a91bab43a6c87a41ae6ef9df93a40c74 to your computer and use it in GitHub Desktop.
// preprocessor macros for logging
#define DefaultLog [NSString stringWithFormat:@"%s (line %d)", __PRETTY_FUNCTION__, __LINE__]
#define LogWarn(format, ...) NSLog((@"%@ -> WARNING: " format), DefaultLog, ##__VA_ARGS__)
#define LogError(format, ...) NSLog((@"%@ -> ERROR: " format), DefaultLog, ##__VA_ARGS__)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment