Repository: cxf
Updated Branches:
refs/heads/master 253b64daa -> e19bb1e4d
[CXF-6417] Keeping looging of multiparts to true by default as it is done now
Project: http://git-wip-us.apache.org/repos/asf/cxf/repo
Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/e19bb1e4
Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/e19bb1e4
Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/e19bb1e4
Branch: refs/heads/master
Commit: e19bb1e4d9059f614fe490b01430ade7679dd25f
Parents: 253b64d
Author: Sergey Beryozkin <sberyozkin@talend.com>
Authored: Thu May 21 12:48:14 2015 +0100
Committer: Sergey Beryozkin <sberyozkin@talend.com>
Committed: Thu May 21 12:48:14 2015 +0100
----------------------------------------------------------------------
.../org/apache/cxf/interceptor/AbstractLoggingInterceptor.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------
http://git-wip-us.apache.org/repos/asf/cxf/blob/e19bb1e4/core/src/main/java/org/apache/cxf/interceptor/AbstractLoggingInterceptor.java
----------------------------------------------------------------------
diff --git a/core/src/main/java/org/apache/cxf/interceptor/AbstractLoggingInterceptor.java
b/core/src/main/java/org/apache/cxf/interceptor/AbstractLoggingInterceptor.java
index f52e8e3..0a0beb1 100644
--- a/core/src/main/java/org/apache/cxf/interceptor/AbstractLoggingInterceptor.java
+++ b/core/src/main/java/org/apache/cxf/interceptor/AbstractLoggingInterceptor.java
@@ -69,7 +69,7 @@ public abstract class AbstractLoggingInterceptor extends AbstractPhaseIntercepto
protected PrintWriter writer;
protected boolean prettyLogging;
private boolean showBinaryContent;
- private boolean showMultipartContent;
+ private boolean showMultipartContent = true;
public AbstractLoggingInterceptor(String phase) {
super(phase);
|