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:
Gary Tully 2010-08-09 11:06:00 +00:00
parent 7cab67bf1d
commit 7629eafd0a
1 changed files with 2 additions and 2 deletions

View File

@ -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();
}