Skip to content

Instantly share code, notes, and snippets.

@tadelv
Created July 15, 2010 07:24
Show Gist options
  • Save tadelv/476620 to your computer and use it in GitHub Desktop.
Save tadelv/476620 to your computer and use it in GitHub Desktop.
a verbose NSLog
#import <Foundation/Foundation.h>
#ifdef DEBUG
#define DebugLog( xx, ...) NSLog(@"%s(%d): " xx, __PRETTY_FUNCTION__, __LINE__, ##__VA_ARGS__)
#else
#define DebugLog( s, ... ) ((void)0)
#endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment