mirror of https://github.com/apache/activemq.git
resolve https://issues.apache.org/activemq/browse/AMQ-2119 - have transport errors log at info level rather than debug
git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@983584 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
7cab67bf1d
commit
7629eafd0a
|
@ -232,8 +232,8 @@ public class TransportConnection implements Connection, Task, CommandVisitor {
|
|||
}
|
||||
if (!stopping.get()) {
|
||||
transportException.set(e);
|
||||
if (TRANSPORTLOG.isDebugEnabled()) {
|
||||
TRANSPORTLOG.debug("Transport failed: " + e, e);
|
||||
if (TRANSPORTLOG.isInfoEnabled()) {
|
||||
TRANSPORTLOG.info("Transport failed: " + e, e);
|
||||
}
|
||||
stopAsync();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue