mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-23 00:41:02 +00:00
tweak
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@38948 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
f22f51b4e5
commit
5ff4f40d40
1 changed files with 4 additions and 2 deletions
|
@ -247,7 +247,8 @@ debugRead(GSHTTPURLHandle *handle, NSData *data)
|
|||
return;
|
||||
}
|
||||
}
|
||||
NSLog(@"Read for %p of %d bytes - '%*.*s'", handle, len, len, len, ptr);
|
||||
NSLog(@"Read for %p of %d bytes - '%*.*s'\n%@",
|
||||
handle, len, len, len, ptr, data);
|
||||
}
|
||||
static void
|
||||
debugWrite(GSHTTPURLHandle *handle, NSData *data)
|
||||
|
@ -268,7 +269,8 @@ debugWrite(GSHTTPURLHandle *handle, NSData *data)
|
|||
return;
|
||||
}
|
||||
}
|
||||
NSLog(@"Write for %p of %d bytes - '%*.*s'", handle, len, len, len, ptr);
|
||||
NSLog(@"Write for %p of %d bytes - '%*.*s'\n%@",
|
||||
handle, len, len, len, ptr, data);
|
||||
}
|
||||
|
||||
+ (NSURLHandle*) cachedHandleForURL: (NSURL*)newUrl
|
||||
|
|
Loading…
Reference in a new issue