Fix typos in debug log messages
This commit is contained in:
parent
75bf4f7374
commit
70521e0207
|
@ -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));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue