Github user michaelandrepearce commented on a diff in the pull request:
https://github.com/apache/activemq-artemis/pull/1502#discussion_r136858752
--- Diff:
artemis-server/src/main/java/org/apache/activemq/artemis/core/server/cluster/ClusterManager.java
---
@@ -542,15 +542,15 @@ public void clear() {
try {
bridge.stop();
} catch (Exception e) {
- ActiveMQServerLogger.LOGGER.warn(e.getMessage(), e);
--- End diff --
what I'm getting at is here we catch if bridge.stop errors and log, but in
the same code in other places we don't log anything when bridge.stop occurs.
---