Last active
August 29, 2015 14:05
-
-
Save mamaz/d84b8ac21ab14691a15e to your computer and use it in GitHub Desktop.
Print filename and line with comments
This file contains 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
// Print filename and line with comments | |
// credits to Taufik Obet | |
#ifndef __OPTIMIZE__ | |
# define NSLog(...) printf("[%-30s:%4d]: %s\n", __FILE_NAME_ONLY__, __LINE__, [[NSString stringWithFormat:__VA_ARGS__] UTF8String]) | |
#else | |
#define NSLog(...) do {} while (0) | |
#endif |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment