Skip to content

Commit

Permalink
Improve debug logging around connections that cannot be reused (#515)
Browse files Browse the repository at this point in the history
  • Loading branch information
nfawcett authored Nov 29, 2023
1 parent ed1c1d6 commit 8a2b0f5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -409,7 +409,7 @@ public void release(final ConnectionEndpoint endpoint, final Object state, final
}
} 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) {
Expand Down

0 comments on commit 8a2b0f5

Please sign in to comment.