Skip to content

Commit

Permalink
Removed '[DEBUG]' prefix from console output
Browse files Browse the repository at this point in the history
  • Loading branch information
rodhan committed Mar 22, 2013
1 parent 7983ff5 commit c5b759e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/nsprintf.m
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ int nsvfprintf (FILE *stream, NSString *format, va_list args) {
int retval;

NSString *str = (NSString *) CFStringCreateWithFormatAndArguments(NULL, NULL, (CFStringRef) format, args);
retval = fprintf(stream, "[DEBUG] %s\n", [str UTF8String]);
retval = fprintf(stream, "%s\n", [str UTF8String]);
[str release];

return retval;
Expand Down

0 comments on commit c5b759e

Please sign in to comment.