Skip to content

Instantly share code, notes, and snippets.

@ferostabio
Created September 26, 2012 21:43
Show Gist options
  • Save ferostabio/3790795 to your computer and use it in GitHub Desktop.
Save ferostabio/3790795 to your computer and use it in GitHub Desktop.
NSLog alternative that doesn't logs time and process
void QuietLog (NSString *format, ...) {
va_list argList;
va_start (argList, format);
NSString *string;
string = [[NSString alloc] initWithFormat: format
arguments: argList];
va_end (argList);
printf ("%s\n", [string UTF8String]);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment