Improve debug logging around connections that cannot be reused (#515)

This commit is contained in:
nfawcett 2023-11-29 15:50:47 +00:00 committed by GitHub
parent ed1c1d61f2
commit 8a2b0f584a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -409,7 +409,7 @@ public class PoolingHttpClientConnectionManager
}
} else {
if (LOG.isDebugEnabled()) {
LOG.debug("{} connection is not kept alive", ConnPoolSupport.getId(endpoint));
LOG.debug("{} connection is not kept alive(isConsistent:{})", ConnPoolSupport.getId(endpoint), conn.isConsistent());
}
}
} catch (final RuntimeException ex) {