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 4C53D200C0E for ; Wed, 1 Feb 2017 22:16:11 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 4AD6A160B46; Wed, 1 Feb 2017 21:16:11 +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 95CDA160B41 for ; Wed, 1 Feb 2017 22:16:10 +0100 (CET) Received: (qmail 95112 invoked by uid 500); 1 Feb 2017 21:16:09 -0000 Mailing-List: contact commits-help@activemq.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@activemq.apache.org Delivered-To: mailing list commits@activemq.apache.org Received: (qmail 95103 invoked by uid 99); 1 Feb 2017 21:16:09 -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 Feb 2017 21:16:09 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 9575ADFBDA; Wed, 1 Feb 2017 21:16:09 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: tabish@apache.org To: commits@activemq.apache.org Message-Id: <15c7a57400d14cd6aa8ed5665bfb44e0@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: activemq git commit: https://issues.apache.org/jira/browse/AMQ-6588 Date: Wed, 1 Feb 2017 21:16:09 +0000 (UTC) archived-at: Wed, 01 Feb 2017 21:16:11 -0000 Repository: activemq Updated Branches: refs/heads/activemq-5.14.x cd82533f3 -> 58ab9b6c9 https://issues.apache.org/jira/browse/AMQ-6588 Add more detail to log output for easier tracking (cherry picked from commit 9b9e3d36788d4b17d7033b9ee44c34a75ad33c17) Project: http://git-wip-us.apache.org/repos/asf/activemq/repo Commit: http://git-wip-us.apache.org/repos/asf/activemq/commit/58ab9b6c Tree: http://git-wip-us.apache.org/repos/asf/activemq/tree/58ab9b6c Diff: http://git-wip-us.apache.org/repos/asf/activemq/diff/58ab9b6c Branch: refs/heads/activemq-5.14.x Commit: 58ab9b6c9333031965e306aa4399f76814ed7383 Parents: cd82533 Author: Timothy Bish Authored: Wed Feb 1 16:15:03 2017 -0500 Committer: Timothy Bish Committed: Wed Feb 1 16:16:04 2017 -0500 ---------------------------------------------------------------------- .../main/java/org/apache/activemq/broker/TransportConnection.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/activemq/blob/58ab9b6c/activemq-broker/src/main/java/org/apache/activemq/broker/TransportConnection.java ---------------------------------------------------------------------- diff --git a/activemq-broker/src/main/java/org/apache/activemq/broker/TransportConnection.java b/activemq-broker/src/main/java/org/apache/activemq/broker/TransportConnection.java index fc61bbd..dbd07be 100755 --- a/activemq-broker/src/main/java/org/apache/activemq/broker/TransportConnection.java +++ b/activemq-broker/src/main/java/org/apache/activemq/broker/TransportConnection.java @@ -855,7 +855,7 @@ public class TransportConnection implements Connection, Task, CommandVisitor { brokerConnectionStates.remove(info.getConnectionId()); } unregisterConnectionState(info.getConnectionId()); - LOG.warn("Failed to add Connection {} due to {}", info.getConnectionId(), e); + LOG.warn("Failed to add Connection id={}, clientId={} due to {}", info.getConnectionId(), clientId, e); //AMQ-6561 - stop for all exceptions on addConnection // close this down - in case the peer of this transport doesn't play nice delayedStop(2000, "Failed with SecurityException: " + e.getLocalizedMessage(), e);