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 A4F9A181C9 for ; Fri, 22 May 2015 08:02:10 +0000 (UTC) Received: (qmail 70854 invoked by uid 500); 22 May 2015 08:02:10 -0000 Delivered-To: apmail-camel-commits-archive@camel.apache.org Received: (qmail 70802 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 70789 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 69C52DFF94; 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:10 -0000 Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: [1/2] camel git commit: CAMEL-8193 Removed the useless trace log Repository: camel Updated Branches: refs/heads/camel-2.14.x e5296a2d7 -> 5ae4a907f refs/heads/camel-2.15.x 573b37353 -> 147a65dde 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/5ae4a907 Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/5ae4a907 Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/5ae4a907 Branch: refs/heads/camel-2.14.x Commit: 5ae4a907f5a2b5aed728378cbf5f71777cb94de0 Parents: e5296a2 Author: Willem Jiang Authored: Fri May 22 11:26:18 2015 +0800 Committer: Willem Jiang Committed: Fri May 22 16:01:44 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/5ae4a907/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());