Log class name of update step

This commit is contained in:
Rene Pfeuffer
2019-07-04 14:17:45 +02:00
parent 69b26f0f29
commit 170e49ab15

View File

@@ -55,9 +55,10 @@ public class UpdateEngine {
private void execute(UpdateStep updateStep) { private void execute(UpdateStep updateStep) {
try { try {
LOG.info("running update step for type {} and version {}", LOG.info("running update step for type {} and version {} (class {})",
updateStep.getAffectedDataType(), updateStep.getAffectedDataType(),
updateStep.getTargetVersion() updateStep.getTargetVersion(),
updateStep.getClass().getName()
); );
updateStep.doUpdate(); updateStep.doUpdate();
} catch (Exception e) { } catch (Exception e) {