Skip to content

Instantly share code, notes, and snippets.

@cocoaNib
Created July 7, 2016 14:44
Show Gist options
  • Save cocoaNib/8c999eb3e5206ea1a479e0ae62f4d864 to your computer and use it in GitHub Desktop.
Save cocoaNib/8c999eb3e5206ea1a479e0ae62f4d864 to your computer and use it in GitHub Desktop.
OBJ-C Debugging
// Debug
#ifdef DEBUG
# define RMW_LOG(format, ...) NSLog((@"[Line %03d] %s " format), __LINE__, __PRETTY_FUNCTION__, ##__VA_ARGS__)
#else
# define RMW_LOG(...)
#endif
#define RMW_LOG_ERROR(format, ...) NSLog((@"[Line %03d] %s ERROR " format), __LINE__, __PRETTY_FUNCTION__, ##__VA_ARGS__)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment