Skip to content

Commit

Permalink
HHH-14508 : Fixing invalid conversion specifier
Browse files Browse the repository at this point in the history
  • Loading branch information
jottinger authored and sebersole committed Mar 17, 2021
1 parent 7695f03 commit d963acf
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -89,7 +89,7 @@ public T readRow(RowProcessingState rowProcessingState, JdbcValuesSourceProcessi

for ( int i = 0; i < assemblerCount; i++ ) {
final DomainResultAssembler assembler = resultAssemblers.get( i );
LoadingLogger.LOGGER.debugf( "Calling top-level assembler (%i / %i) : %s", i, assemblerCount, assembler );
LoadingLogger.LOGGER.debugf( "Calling top-level assembler (%s / %s) : %s", i, assemblerCount, assembler );
resultRow[i] = assembler.assemble( rowProcessingState, options );
}

Expand Down

0 comments on commit d963acf

Please sign in to comment.