Skip to content

Instantly share code, notes, and snippets.

@Fogh
Last active December 19, 2015 01:39
Show Gist options
  • Save Fogh/5877194 to your computer and use it in GitHub Desktop.
Save Fogh/5877194 to your computer and use it in GitHub Desktop.
DLog - Only show logs when debugging. Add to your projects Prefix.pch file
#ifdef DEBUG
#define DLog(...) NSLog(@"%s(%p) %@", __PRETTY_FUNCTION__, self, [NSString stringWithFormat:__VA_ARGS__])
#else
#define DLog(...) do { } while (0)
#endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment