Skip to content

Instantly share code, notes, and snippets.

@jdg
Forked from atnan/gist:117019
Created May 24, 2009 22:27
Show Gist options
  • Save jdg/117282 to your computer and use it in GitHub Desktop.
Save jdg/117282 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