Skip to content

Instantly share code, notes, and snippets.

@kechol
Created March 11, 2013 16:50
Show Gist options
  • Select an option

  • Save kechol/5135625 to your computer and use it in GitHub Desktop.

Select an option

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
#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