git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@38948 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-MacDonald 2015-08-29 20:45:52 +00:00
parent f22f51b4e5
commit 5ff4f40d40

View file

@ -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