mirror of https://github.com/apache/activemq.git
suppress the stack trace output for the error and just log a warning that the URI path is not valid for binding to a local port. Output the full exception stack trace if debug logging is turned on. git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@1074948 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
56f8e368d5
commit
72a0fd1a43
|
@ -129,7 +129,10 @@ public class TcpTransportFactory extends TransportFactory {
|
||||||
String localString = location.getScheme() + ":/" + path;
|
String localString = location.getScheme() + ":/" + path;
|
||||||
localLocation = new URI(localString);
|
localLocation = new URI(localString);
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
LOG.warn("path isn't a valid local location for TcpTransport to use", e);
|
LOG.warn("path isn't a valid local location for TcpTransport to use", e.getMessage());
|
||||||
|
if(LOG.isDebugEnabled()) {
|
||||||
|
LOG.debug("Failure detail", e);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
SocketFactory socketFactory = createSocketFactory();
|
SocketFactory socketFactory = createSocketFactory();
|
||||||
|
|
Loading…
Reference in New Issue