Skip to content

Instantly share code, notes, and snippets.

@azurestone
Created January 10, 2013 03:57
Show Gist options
  • Save azurestone/4499318 to your computer and use it in GitHub Desktop.
Save azurestone/4499318 to your computer and use it in GitHub Desktop.
// Debugビルド時のみNSLogを出力する
#ifdef DEBUG
#define DebugNSLog(...); NSLog(__VA_ARGS__);
#else
#define DebugNSLog(...); // NSLog(__VA_ARGS__);
#endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment