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 0867D200C2A for ; Wed, 1 Mar 2017 17:06:24 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 070FF160B70; Wed, 1 Mar 2017 16:06:24 +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 4A066160B5E for ; Wed, 1 Mar 2017 17:06:23 +0100 (CET) Received: (qmail 95839 invoked by uid 500); 1 Mar 2017 16:06:22 -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 95830 invoked by uid 99); 1 Mar 2017 16:06:22 -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; Wed, 01 Mar 2017 16:06:22 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 5989CDFCA1; Wed, 1 Mar 2017 16:06:22 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: sergeyb@apache.org To: commits@cxf.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: cxf git commit: [CXF-7254] Reporting message id only as SLF4j MDC property Date: Wed, 1 Mar 2017 16:06:22 +0000 (UTC) archived-at: Wed, 01 Mar 2017 16:06:24 -0000 Repository: cxf Updated Branches: refs/heads/3.1.x-fixes 150213cac -> 3ab94c4bc [CXF-7254] Reporting message id only as SLF4j MDC property Project: http://git-wip-us.apache.org/repos/asf/cxf/repo Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/3ab94c4b Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/3ab94c4b Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/3ab94c4b Branch: refs/heads/3.1.x-fixes Commit: 3ab94c4bc289174ab8f54a114ebb039499adf0b8 Parents: 150213c Author: Sergey Beryozkin Authored: Wed Mar 1 16:04:25 2017 +0000 Committer: Sergey Beryozkin Committed: Wed Mar 1 16:06:06 2017 +0000 ---------------------------------------------------------------------- .../java/org/apache/cxf/ext/logging/event/LogMessageFormatter.java | 1 - 1 file changed, 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cxf/blob/3ab94c4b/rt/features/logging/src/main/java/org/apache/cxf/ext/logging/event/LogMessageFormatter.java ---------------------------------------------------------------------- diff --git a/rt/features/logging/src/main/java/org/apache/cxf/ext/logging/event/LogMessageFormatter.java b/rt/features/logging/src/main/java/org/apache/cxf/ext/logging/event/LogMessageFormatter.java index 1ffdba5..0c628f7 100644 --- a/rt/features/logging/src/main/java/org/apache/cxf/ext/logging/event/LogMessageFormatter.java +++ b/rt/features/logging/src/main/java/org/apache/cxf/ext/logging/event/LogMessageFormatter.java @@ -41,7 +41,6 @@ public final class LogMessageFormatter { write(b, "Content-Type", event.getContentType()); write(b, "ResponseCode", event.getResponseCode()); write(b, "ExchangeId", event.getExchangeId()); - write(b, "MessageId", event.getMessageId()); if (event.getServiceName() != null) { write(b, "ServiceName", localPart(event.getServiceName())); write(b, "PortName", localPart(event.getPortName()));