mirror of https://github.com/apache/activemq.git
[AMQ-7301] Fix typo (double from)
This commit is contained in:
parent
d800f1bdb4
commit
05c43fe347
|
@ -243,7 +243,7 @@ public class TransportConnector implements Connector, BrokerServiceAware {
|
|||
if (brokerService != null && brokerService.isStopping()) {
|
||||
LOG.info("Could not accept connection during shutdown {} : {} ({})", (remoteHost == null ? "" : "from " + remoteHost), error.getLocalizedMessage(), getRootCause(error).getMessage());
|
||||
} else {
|
||||
LOG.warn("Could not accept connection from {}: {} ({})", (remoteHost == null ? "" : "from " + remoteHost), error.getMessage(), getRootCause(error).getMessage());
|
||||
LOG.warn("Could not accept connection {}: {} ({})", (remoteHost == null ? "" : "from " + remoteHost), error.getMessage(), getRootCause(error).getMessage());
|
||||
LOG.debug("Reason: " + error.getMessage(), error);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue