mirror of https://github.com/apache/activemq.git
ensure stack trace is in trace logging of exception
This commit is contained in:
parent
e102e64e9d
commit
146fb12108
|
@ -243,7 +243,7 @@ public class FailoverTransport implements CompositeTransport {
|
|||
public final void handleTransportFailure(IOException e) throws InterruptedException {
|
||||
synchronized (reconnectMutex) {
|
||||
if (LOG.isTraceEnabled()) {
|
||||
LOG.trace(this + " handleTransportFailure: " + e);
|
||||
LOG.trace(this + " handleTransportFailure: " + e, e);
|
||||
}
|
||||
|
||||
Transport transport = connectedTransport.getAndSet(null);
|
||||
|
|
Loading…
Reference in New Issue