Skip to content

Instantly share code, notes, and snippets.

@greenhat
Created May 27, 2012 20:02
Show Gist options
  • Save greenhat/2815680 to your computer and use it in GitHub Desktop.
Save greenhat/2815680 to your computer and use it in GitHub Desktop.
Logging macros for debug purposes
#ifdef DEBUG
#define DLog( s, ... ) NSLog( @"<%p %@:%@(%d)> %@", self, [[NSString stringWithUTF8String:__FILE__] lastPathComponent],NSStringFromSelector(_cmd), __LINE__, [NSString stringWithFormat:(s), ##__VA_ARGS__] )
#else
#define DLog( s, ... )
#endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment