Skip to content

Instantly share code, notes, and snippets.

@jamesnesfield
Created February 10, 2014 12:52
Show Gist options
  • Save jamesnesfield/8915369 to your computer and use it in GitHub Desktop.
Save jamesnesfield/8915369 to your computer and use it in GitHub Desktop.
iOS debug-only logging
/* place in pch
from http://stackoverflow.com/questions/9621143/debuglog-format-string-is-not-a-string-literal
*/
#ifdef DEBUG
#define DebugLog(s, ...) NSLog(s, ##__VA_ARGS__)
#else
#define DebugLog(s, ...)
#endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment