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
1 changed files with 2 additions and 2 deletions

View File

@ -450,9 +450,9 @@ public class PoolingHttpClientConnectionManager
} 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));
}
}
}