Skip to content

Instantly share code, notes, and snippets.

@atnan
Created May 24, 2009 08:35
Show Gist options
  • Save atnan/117019 to your computer and use it in GitHub Desktop.
Save atnan/117019 to your computer and use it in GitHub Desktop.
# define ALog(fmt, ...) NSLog((@"%s [Line %d] " fmt), __PRETTY_FUNCTION__, __LINE__, ##__VA_ARGS__);
# ifdef DEBUG
# define DLog(fmt, ...) ALog(fmt, ##__VA_ARGS__);
# else
# define DLog(...)
# endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment