changed log message level
This commit is contained in:
parent
31e2423d8a
commit
3c65085123
|
@ -74,10 +74,9 @@ public class StandardRowReader<T> implements RowReader<T> {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public T readRow(RowProcessingState rowProcessingState, JdbcValuesSourceProcessingOptions options) {
|
public T readRow(RowProcessingState rowProcessingState, JdbcValuesSourceProcessingOptions options) {
|
||||||
LOG.info( "---Processing Row---" );
|
LOG.debug( "---Processing Row---" );
|
||||||
coordinateInitializers( rowProcessingState, options );
|
|
||||||
|
|
||||||
// finally assemble the results
|
coordinateInitializers( rowProcessingState, options );
|
||||||
|
|
||||||
for ( int i = 0; i < assemblerCount; i++ ) {
|
for ( int i = 0; i < assemblerCount; i++ ) {
|
||||||
resultRow[i] = resultAssemblers.get( i ).assemble( rowProcessingState, options );
|
resultRow[i] = resultAssemblers.get( i ).assemble( rowProcessingState, options );
|
||||||
|
@ -89,7 +88,7 @@ public class StandardRowReader<T> implements RowReader<T> {
|
||||||
}
|
}
|
||||||
|
|
||||||
private void afterRow(RowProcessingState rowProcessingState, JdbcValuesSourceProcessingOptions options) {
|
private void afterRow(RowProcessingState rowProcessingState, JdbcValuesSourceProcessingOptions options) {
|
||||||
// todo : add AfterLoadActions handling here via Callback
|
// todo (6.0) : add AfterLoadActions handling here via Callback
|
||||||
|
|
||||||
for ( Initializer initializer : initializers ) {
|
for ( Initializer initializer : initializers ) {
|
||||||
initializer.finishUpRow( rowProcessingState );
|
initializer.finishUpRow( rowProcessingState );
|
||||||
|
|
Loading…
Reference in New Issue