Skip to content

Instantly share code, notes, and snippets.

@jtomschroeder
Created March 13, 2013 18:00
Show Gist options
  • Save jtomschroeder/5154573 to your computer and use it in GitHub Desktop.
Save jtomschroeder/5154573 to your computer and use it in GitHub Desktop.
NSLog without a timestamp.
#define NSLog(FORMAT, ...) fprintf( stderr, "%s\n", [[NSString stringWithFormat:FORMAT, ##__VA_ARGS__] UTF8String] );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment