Remove System.err.pritnln(..) statements. See #468

This commit is contained in:
norman 2012-07-23 10:19:35 +02:00
parent a76e8a8e36
commit 36acda0be9

View File

@ -124,7 +124,6 @@ public class HttpUploadClient {
DiskAttribute.baseDirectory = null; // system temp directory
// Simple Get form: no factory used (not usable)
System.err.println("==========================================\nStarting Get\n==========================================");
List<Entry<String, String>> headers =
formget(bootstrap, host, port, get, uriSimple);
if (headers == null) {
@ -132,7 +131,6 @@ public class HttpUploadClient {
return;
}
// Simple Post form: factory used for big attributes
System.err.println("==========================================\nStarting Simple Post\n==========================================");
List<InterfaceHttpData> bodylist =
formpost(bootstrap, host, port, uriSimple, file, factory, headers);
if (bodylist == null) {
@ -140,7 +138,6 @@ public class HttpUploadClient {
return;
}
// Multipart Post form: factory used
System.err.println("==========================================\nStarting PostUpload Multipart\n==========================================");
formpostmultipart(bootstrap, host, port, uriFile, factory, headers, bodylist);
// Shut down executor threads to exit.
@ -368,7 +365,6 @@ public class HttpUploadClient {
}
// send request
System.err.println("Request is chunked? " + request.isChunked() + ":" + bodyRequestEncoder.isChunked());
channel.write(request);
// test if request was chunked and if so, finish the write