Skip to content

Instantly share code, notes, and snippets.

@mamaz
Last active August 29, 2015 14:05
Show Gist options
  • Save mamaz/d84b8ac21ab14691a15e to your computer and use it in GitHub Desktop.
Save mamaz/d84b8ac21ab14691a15e to your computer and use it in GitHub Desktop.
Print filename and line with comments
// 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