Created
May 1, 2009 23:28
-
-
Save atomicbird/105321 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Define a debug-build-only NSLog wrapper. DLog printing will only happen in debug builds. | |
#ifdef DEBUG | |
#define DLog(...) NSLog(__VA_ARGS__) | |
#else | |
#define DLog(...) | |
#endif | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment