Skip to content

Instantly share code, notes, and snippets.

@saturngod
Created March 28, 2012 09:43
Show Gist options
  • Save saturngod/2225084 to your computer and use it in GitHub Desktop.
Save saturngod/2225084 to your computer and use it in GitHub Desktop.
DebugLog
#define DEBUG_MODE
#ifdef DEBUG_MODE
#define DLog( s, ... ) NSLog( @"<%@:(%d)> %@", [[NSString stringWithUTF8String:__FILE__] lastPathComponent], __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