Skip to content

Instantly share code, notes, and snippets.

@veritech
Created November 18, 2010 13:00
Show Gist options
  • Save veritech/704938 to your computer and use it in GitHub Desktop.
Save veritech/704938 to your computer and use it in GitHub Desktop.
DebugLog
#ifdef 1
#define DebugLog( s, ... ) NSLog( @"<%p %@:(%d)> %@", self, [[NSString stringWithUTF8String:__FILE__] lastPathComponent], __LINE__, [NSString stringWithFormat:(s), ##__VA_ARGS__] )
#else
#define DebugLog( s, ... )
#endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment