Skip to content

Instantly share code, notes, and snippets.

@AdityaDeshmane
Created September 20, 2015 21:44
Show Gist options
  • Save AdityaDeshmane/2d48fe39ae5e040f7226 to your computer and use it in GitHub Desktop.
Save AdityaDeshmane/2d48fe39ae5e040f7226 to your computer and use it in GitHub Desktop.
iOS : Custom Logs
#ifdef DEBUG
#define DebugLog(fmt, ...) NSLog((@" < File:%@, Function:%s, Line:%d > :: " fmt),[[NSString stringWithUTF8String:__FILE__] lastPathComponent], __PRETTY_FUNCTION__, __LINE__, ##__VA_ARGS__);
#else
#define DebugLog(...)
#endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment