Skip to content

Instantly share code, notes, and snippets.

@juanarzola
Created November 1, 2010 07:15
Show Gist options
  • Save juanarzola/657766 to your computer and use it in GitHub Desktop.
Save juanarzola/657766 to your computer and use it in GitHub Desktop.
DLog with an filename:linenumber format that Xcode's Open Quickly likes
#ifdef DEBUG
#define DLog(fmt, ...) NSLog((@"%s <%@:%d> " fmt), __PRETTY_FUNCTION__, [[NSString stringWithFormat:@"%s", __FILE__ ] lastPathComponent] ,__LINE__, ##__VA_ARGS__)
#else
#define DLog(format, ...)
#endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment