Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save colinmcardell/5111813 to your computer and use it in GitHub Desktop.
Save colinmcardell/5111813 to your computer and use it in GitHub Desktop.
Replacement for NSLog similar to http://www.cimgf.com/2010/05/02/my-current-prefix-pch-file/ This is plenty available elsewhere with a number of variations...
// DLog will output like NSLog only when the DEBUG variable is set
#ifdef DEBUG
#define DLog(fmt, ...) NSLog((@"%s [Line %d] " fmt), __PRETTY_FUNCTION__, __LINE__, ##__VA_ARGS__);
#else
#define DLog(...)
#endif
// ALog will always output like NSLog
#define ALog(fmt, ...) NSLog((@"%s [Line %d] " fmt), __PRETTY_FUNCTION__, __LINE__, ##__VA_ARGS__);
// ULog will show the UIAlertView only when the DEBUG variable is set
#ifdef DEBUG
#define ULog(fmt, ...) { UIAlertView *alert = [[UIAlertView alloc] initWithTitle:[NSString stringWithFormat:@"%s\n [Line %d] ", __PRETTY_FUNCTION__, __LINE__] message:[NSString stringWithFormat:fmt, ##__VA_ARGS__] delegate:nil cancelButtonTitle:@"Ok" otherButtonTitles:nil]; [alert show]; }
#else
#define ULog(...)
#endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment