use INFO level logging when we loose a connection to a broker to highlight to users bad networking issues such as dropped sockets or bad firewalls etc. This change fixes AMQ-829

git-svn-id: https://svn.apache.org/repos/asf/incubator/activemq/trunk@434064 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
James Strachan 2006-08-23 15:31:40 +00:00
parent 9431f934cd
commit 6e714a2fe5
1 changed files with 1 additions and 1 deletions

View File

@ -224,7 +224,7 @@ public class FailoverTransport implements CompositeTransport {
transportListener.transportInterupted();
}
synchronized (reconnectMutex) {
log.debug("Transport failed, starting up reconnect task", e);
log.info("Transport failed, attempting to automatically reconnect due to: " + e, e);
if (connectedTransport != null) {
initialized = false;
ServiceSupport.dispose(connectedTransport);