Last active
May 10, 2017 23:59
-
-
Save efremidze/a91bab43a6c87a41ae6ef9df93a40c74 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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