Skip to content

Instantly share code, notes, and snippets.

@vaddieg
Created February 18, 2015 16:56
Show Gist options
  • Save vaddieg/ba1d00ebc4ebca78b5f4 to your computer and use it in GitHub Desktop.
Save vaddieg/ba1d00ebc4ebca78b5f4 to your computer and use it in GitHub Desktop.
DLog() for swift
func DLog(format: String, args: CVarArgType) {
#if DEBUG
NSLog(format, args.encode())
#endif
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment