Created
March 11, 2013 16:50
-
-
Save kechol/5135625 to your computer and use it in GitHub Desktop.
simple and useful NSLog override
see: http://d.hatena.ne.jp/shu223/20120317/1331914823
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
| #ifdef DEBUG | |
| #define Logger(fmt, ...) NSLog((@"%s [Line %d] " fmt), __PRETTY_FUNCTION__, __LINE__, ##__VA_ARGS__); | |
| #else | |
| #define Logger(...) | |
| #endif |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment