Github user rstancel commented on a diff in the pull request:
https://github.com/apache/activemq-artemis/pull/1964#discussion_r176724023
--- Diff:
artemis-server/src/main/java/org/apache/activemq/artemis/core/server/cluster/impl/BridgeImpl.java
---
@@ -927,9 +927,7 @@ protected void connect() {
scheduleRetryConnectFixedTimeout(this.retryInterval);
return;
} else {
- if (logger.isDebugEnabled()) {
- logger.debug("Bridge " + this + " is unable to connect
to destination. Retrying", e);
- }
+ logger.warn("Bridge " + this + " is unable to connect to
destination. Retrying...");
--- End diff --
@michaelandrepearce I have used the same message as in another if-else
condition. is it ok?
---