mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-13 17:05:43 +01:00
Log class name of update step
This commit is contained in:
@@ -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) {
|
||||||
|
|||||||
Reference in New Issue
Block a user