This commit is contained in:
地平线
2015-10-19 16:26:23 +08:00
parent de0f2c0a69
commit 11b23f894e

View File

@@ -262,7 +262,7 @@ public class HttpRequest extends Request {
return this.getClass().getSimpleName() + "{method:" + this.method + ", requestURI:" + this.requestURI return this.getClass().getSimpleName() + "{method:" + this.method + ", requestURI:" + this.requestURI
+ ", contentType:" + this.contentType + ", connection:" + this.connection + ", protocol:" + this.protocol + ", contentType:" + this.contentType + ", connection:" + this.connection + ", protocol:" + this.protocol
+ ", contentLength:" + this.contentLength + ", cookiestr:" + this.cookiestr + ", contentLength:" + this.contentLength + ", cookiestr:" + this.cookiestr
+ ", host:" + this.host + ", params:" + this.params + ", header:" + this.header + "body:" + getBody() + "}"; + ", host:" + this.host + ", params:" + this.params + ", header:" + this.header + (this.boundary ? "" : ("body:" + getBody())) + "}";
} }
public final MultiContext getMultiContext() { public final MultiContext getMultiContext() {