fixed log output in DataImportProgress

This commit is contained in:
Axel Uhl
2023-11-24 00:48:42 +01:00
parent 014a98028f
commit 0b490c95d5
@@ -55,7 +55,7 @@ public class DataImportProgressImpl implements DataImportProgress {
@Override
public void setCurrentSubProgress(DataImportSubProgress subProgress) {
if (subProgress != currentSubProgress) {
logger.info("Master data import with operation ID "+getOperationId()+" moving from stage "+currentSubProgressPct+" to "+subProgress);
logger.info("Master data import with operation ID "+getOperationId()+" moving from stage "+currentSubProgress+" to "+subProgress);
}
currentSubProgress = subProgress;
}