Skip to content

Commit 05c43fe

Browse files
committed
[AMQ-7301] Fix typo (double from)
1 parent d800f1b commit 05c43fe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

activemq-broker/src/main/java/org/apache/activemq/broker/TransportConnector.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ private void onAcceptError(Exception error, String remoteHost) {
243243
if (brokerService != null && brokerService.isStopping()) {
244244
LOG.info("Could not accept connection during shutdown {} : {} ({})", (remoteHost == null ? "" : "from " + remoteHost), error.getLocalizedMessage(), getRootCause(error).getMessage());
245245
} else {
246-
LOG.warn("Could not accept connection from {}: {} ({})", (remoteHost == null ? "" : "from " + remoteHost), error.getMessage(), getRootCause(error).getMessage());
246+
LOG.warn("Could not accept connection {}: {} ({})", (remoteHost == null ? "" : "from " + remoteHost), error.getMessage(), getRootCause(error).getMessage());
247247
LOG.debug("Reason: " + error.getMessage(), error);
248248
}
249249
}

0 commit comments

Comments
 (0)