HHH-15221 Fix a logging error in JdbcValuesCacheHit.java

This commit is contained in:
Nathan Xu 2022-04-21 02:57:59 -04:00 committed by Sanne Grinovero
parent 2b501c820d
commit 502c6610e2
1 changed files with 1 additions and 1 deletions

View File

@ -136,7 +136,7 @@ public class JdbcValuesCacheHit extends AbstractJdbcValues {
// we need to subtract it from `numberOfRows` // we need to subtract it from `numberOfRows`
final int newPosition = numberOfRows + position; final int newPosition = numberOfRows + position;
ResultsLogger.RESULTS_MESSAGE_LOGGER.debugf( ResultsLogger.RESULTS_MESSAGE_LOGGER.debugf(
"Translated negative absolute position `%i` into `%` based on `%i` number of rows", "Translated negative absolute position `%i` into `%i` based on `%i` number of rows",
position, position,
newPosition, newPosition,
numberOfRows numberOfRows