You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by cl...@apache.org on 2019/06/18 02:30:12 UTC

[activemq-artemis] branch master updated: ARTEMIS-2384 log underlying bridge failure at DEBUG

This is an automated email from the ASF dual-hosted git repository.

clebertsuconic pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/activemq-artemis.git


The following commit(s) were added to refs/heads/master by this push:
     new 3c5453d  ARTEMIS-2384 log underlying bridge failure at DEBUG
     new a1cfc45  This closes #2706
3c5453d is described below

commit 3c5453d40104b7631bc9719a73d69335cb725add
Author: Justin Bertram <jb...@apache.org>
AuthorDate: Mon Jun 17 08:51:11 2019 -0500

    ARTEMIS-2384 log underlying bridge failure at DEBUG
---
 .../apache/activemq/artemis/core/server/cluster/impl/BridgeImpl.java  | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/artemis-server/src/main/java/org/apache/activemq/artemis/core/server/cluster/impl/BridgeImpl.java b/artemis-server/src/main/java/org/apache/activemq/artemis/core/server/cluster/impl/BridgeImpl.java
index 38e2294..7d5bbe8 100644
--- a/artemis-server/src/main/java/org/apache/activemq/artemis/core/server/cluster/impl/BridgeImpl.java
+++ b/artemis-server/src/main/java/org/apache/activemq/artemis/core/server/cluster/impl/BridgeImpl.java
@@ -1034,7 +1034,9 @@ public class BridgeImpl implements Bridge, SessionFailureListener, SendAcknowled
                return;
             } else {
                ActiveMQServerLogger.LOGGER.errorConnectingBridgeRetry(this);
-
+               if (logger.isDebugEnabled()) {
+                  logger.debug("Underlying bridge connection failure", e);
+               }
                scheduleRetryConnect();
             }
          } catch (ActiveMQInterruptedException | InterruptedException e) {