Return-Path: X-Original-To: apmail-camel-commits-archive@www.apache.org Delivered-To: apmail-camel-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 45859189AD for ; Tue, 26 May 2015 13:07:42 +0000 (UTC) Received: (qmail 60672 invoked by uid 500); 26 May 2015 13:07:42 -0000 Delivered-To: apmail-camel-commits-archive@camel.apache.org Received: (qmail 60624 invoked by uid 500); 26 May 2015 13:07:42 -0000 Mailing-List: contact commits-help@camel.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@camel.apache.org Delivered-To: mailing list commits@camel.apache.org Received: (qmail 60613 invoked by uid 99); 26 May 2015 13:07:42 -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, 26 May 2015 13:07:42 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 0A02ADFF5E; Tue, 26 May 2015 13:07:42 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: davsclaus@apache.org To: commits@camel.apache.org Date: Tue, 26 May 2015 13:07:41 -0000 Message-Id: <3c73e40f90ff4e6eaff76a7aa00b5353@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [1/3] camel git commit: Fix the logging event to use placeholders correctly. Repository: camel Updated Branches: refs/heads/camel-2.14.x 5ae4a907f -> 8941953ae refs/heads/camel-2.15.x 147a65dde -> 3c33808a0 refs/heads/master 05f0d1b18 -> f9f158cbd Fix the logging event to use placeholders correctly. Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/f9f158cb Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/f9f158cb Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/f9f158cb Branch: refs/heads/master Commit: f9f158cbd4060cc1b61fdfd5d6084165084052c0 Parents: 05f0d1b Author: Candle Authored: Tue May 26 13:31:37 2015 +0100 Committer: Candle Committed: Tue May 26 13:31:37 2015 +0100 ---------------------------------------------------------------------- .../main/java/org/apache/camel/component/aws/sqs/SqsProducer.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/f9f158cb/components/camel-aws/src/main/java/org/apache/camel/component/aws/sqs/SqsProducer.java ---------------------------------------------------------------------- diff --git a/components/camel-aws/src/main/java/org/apache/camel/component/aws/sqs/SqsProducer.java b/components/camel-aws/src/main/java/org/apache/camel/component/aws/sqs/SqsProducer.java index 874e021..69b1eb3 100644 --- a/components/camel-aws/src/main/java/org/apache/camel/component/aws/sqs/SqsProducer.java +++ b/components/camel-aws/src/main/java/org/apache/camel/component/aws/sqs/SqsProducer.java @@ -125,7 +125,7 @@ public class SqsProducer extends DefaultProducer { result.put(entry.getKey(), mav); } else { // cannot translate the message header to message attribute value - LOG.warn("Cannot put the message header key={0}, value={1} into Sqs MessageAttribute", entry.getKey(), entry.getValue()); + LOG.warn("Cannot put the message header key={}, value={} into Sqs MessageAttribute", entry.getKey(), entry.getValue()); } } }