We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7983ff5 commit c5b759eCopy full SHA for c5b759e
Source/nsprintf.m
@@ -9,7 +9,7 @@ int nsvfprintf (FILE *stream, NSString *format, va_list args) {
9
int retval;
10
11
NSString *str = (NSString *) CFStringCreateWithFormatAndArguments(NULL, NULL, (CFStringRef) format, args);
12
- retval = fprintf(stream, "[DEBUG] %s\n", [str UTF8String]);
+ retval = fprintf(stream, "%s\n", [str UTF8String]);
13
[str release];
14
15
return retval;
0 commit comments