Skip to content

Instantly share code, notes, and snippets.

@elmoswelt
Forked from atnan/Debugging.h
Created July 14, 2012 12:03
Show Gist options
  • Save elmoswelt/3110871 to your computer and use it in GitHub Desktop.
Save elmoswelt/3110871 to your computer and use it in GitHub Desktop.
# define ALog(format, ...) NSLog((@"%s [L%d] " format), __PRETTY_FUNCTION__, __LINE__, ##__VA_ARGS__);
# ifdef DEBUG
# define DLog(format, ...) ALog(format, ##__VA_ARGS__);
# else
# define DLog(...)
# endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment