Fix typos in debug log messages

This commit is contained in:
Gary Gregory 2024-10-26 08:55:29 -04:00
parent 75bf4f7374
commit 70521e0207

View File

@ -450,9 +450,9 @@ public void release(final ConnectionEndpoint endpoint, final Object state, final
} else {
if (LOG.isDebugEnabled()) {
if (conn != null && !conn.isConsistent()) {
LOG.debug("{} connection is in an inconsistent state and cannot be kept alive)", ConnPoolSupport.getId(endpoint));
LOG.debug("{} connection is in an inconsistent state and cannot be kept alive", ConnPoolSupport.getId(endpoint));
} else {
LOG.debug("{} connection is not kept alive)", ConnPoolSupport.getId(endpoint));
LOG.debug("{} connection is not kept alive", ConnPoolSupport.getId(endpoint));
}
}
}