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 ACDF0181CA for ; Fri, 22 May 2015 08:02:10 +0000 (UTC) Received: (qmail 70938 invoked by uid 500); 22 May 2015 08:02:10 -0000 Delivered-To: apmail-camel-commits-archive@camel.apache.org Received: (qmail 70812 invoked by uid 500); 22 May 2015 08:02:10 -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 70793 invoked by uid 99); 22 May 2015 08:02:10 -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; Fri, 22 May 2015 08:02:10 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 6F976E000D; Fri, 22 May 2015 08:02:10 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: ningjiang@apache.org To: commits@camel.apache.org Date: Fri, 22 May 2015 08:02:11 -0000 Message-Id: In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [2/2] camel git commit: CAMEL-8193 Removed the useless trace log CAMEL-8193 Removed the useless trace log Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/147a65dd Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/147a65dd Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/147a65dd Branch: refs/heads/camel-2.15.x Commit: 147a65dde1ba9432dc27d628e2fbc7953e2ec183 Parents: 573b373 Author: Willem Jiang Authored: Fri May 22 11:26:18 2015 +0800 Committer: Willem Jiang Committed: Fri May 22 16:01:54 2015 +0800 ---------------------------------------------------------------------- .../src/main/java/org/apache/camel/component/netty/NettyHelper.java | 1 - 1 file changed, 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/147a65dd/components/camel-netty/src/main/java/org/apache/camel/component/netty/NettyHelper.java ---------------------------------------------------------------------- diff --git a/components/camel-netty/src/main/java/org/apache/camel/component/netty/NettyHelper.java b/components/camel-netty/src/main/java/org/apache/camel/component/netty/NettyHelper.java index aabadd2..ecb6dba 100644 --- a/components/camel-netty/src/main/java/org/apache/camel/component/netty/NettyHelper.java +++ b/components/camel-netty/src/main/java/org/apache/camel/component/netty/NettyHelper.java @@ -110,7 +110,6 @@ public final class NettyHelper { */ public static void close(Channel channel) { if (channel != null) { - LOG.trace("Closing channel: {}", channel); channel.close().addListener(new ChannelFutureListener() { public void operationComplete(ChannelFuture future) { LOG.trace("Channel closed: {}", future.getChannel());