mirror of https://github.com/apache/activemq.git
tone down logging of warn to just exception message, full exception logged as debug.
This commit is contained in:
parent
f4a8b117ce
commit
bc326c8e57
|
@ -153,7 +153,7 @@ public class DiscoveryNetworkConnector extends NetworkConnector implements Disco
|
|||
} catch (Exception e) {
|
||||
ServiceSupport.dispose(localTransport);
|
||||
ServiceSupport.dispose(remoteTransport);
|
||||
LOG.warn("Could not start network bridge between: {} and: {} due to: {}", new Object[]{ localURI, uri, e });
|
||||
LOG.warn("Could not start network bridge between: {} and: {} due to: {}", new Object[]{ localURI, uri, e.getMessage() });
|
||||
LOG.debug("Start failure exception: ", e);
|
||||
try {
|
||||
// Will remove bridge and active event.
|
||||
|
|
Loading…
Reference in New Issue