Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id B2A9A200C3D for ; Tue, 14 Mar 2017 10:55:07 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id B13AB160B7E; Tue, 14 Mar 2017 09:55:07 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 2D1F0160B7C for ; Tue, 14 Mar 2017 10:55:07 +0100 (CET) Received: (qmail 83897 invoked by uid 500); 14 Mar 2017 09:55:06 -0000 Mailing-List: contact commits-help@cxf.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cxf.apache.org Delivered-To: mailing list commits@cxf.apache.org Received: (qmail 83887 invoked by uid 99); 14 Mar 2017 09:55:06 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 14 Mar 2017 09:55:06 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 4BAD1DFB7D; Tue, 14 Mar 2017 09:55:06 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: cschneider@apache.org To: commits@cxf.apache.org Message-Id: <8adbeff63474467a8b10cc6124c087df@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: cxf git commit: [CXF-7281] Fix typo and doc Date: Tue, 14 Mar 2017 09:55:06 +0000 (UTC) archived-at: Tue, 14 Mar 2017 09:55:07 -0000 Repository: cxf Updated Branches: refs/heads/master 8868b8173 -> f6ce97d4d [CXF-7281] Fix typo and doc Project: http://git-wip-us.apache.org/repos/asf/cxf/repo Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/f6ce97d4 Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/f6ce97d4 Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/f6ce97d4 Branch: refs/heads/master Commit: f6ce97d4d38446c8336f6f713d0306d52edf6086 Parents: 8868b81 Author: Christian Schneider Authored: Tue Mar 14 09:26:10 2017 +0100 Committer: Christian Schneider Committed: Tue Mar 14 10:54:58 2017 +0100 ---------------------------------------------------------------------- .../src/main/java/org/apache/cxf/ext/logging/Logging.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cxf/blob/f6ce97d4/rt/features/logging/src/main/java/org/apache/cxf/ext/logging/Logging.java ---------------------------------------------------------------------- diff --git a/rt/features/logging/src/main/java/org/apache/cxf/ext/logging/Logging.java b/rt/features/logging/src/main/java/org/apache/cxf/ext/logging/Logging.java index 97387a2..558039b 100644 --- a/rt/features/logging/src/main/java/org/apache/cxf/ext/logging/Logging.java +++ b/rt/features/logging/src/main/java/org/apache/cxf/ext/logging/Logging.java @@ -56,8 +56,8 @@ public @interface Logging { boolean logBinary() default false; /** - * Ignore binary payloads by default + * Log multipart payloads by default */ - boolean logMultiplart() default true; + boolean logMultipart() default true; }