Arik Hadas has uploaded a new change for review. Change subject: core: modify log message on live snapshot failure ......................................................................
core: modify log message on live snapshot failure The log message that was printed when live snapshot failed contained the word "Wasn't" which appears in the log file as "Wasnt". That is confusing because if you use copy-paste in order to look for it in the log file you won't find it. Thus, the log message is changed. Change-Id: Iee77b46be0948ab90de2e9ea438ef9e9b4413546 Signed-off-by: Arik Hadas <[email protected]> --- M backend/manager/modules/bll/src/main/java/org/ovirt/engine/core/bll/CreateAllSnapshotsFromVmCommand.java 1 file changed, 1 insertion(+), 1 deletion(-) git pull ssh://gerrit.ovirt.org:29418/ovirt-engine refs/changes/83/24383/1 diff --git a/backend/manager/modules/bll/src/main/java/org/ovirt/engine/core/bll/CreateAllSnapshotsFromVmCommand.java b/backend/manager/modules/bll/src/main/java/org/ovirt/engine/core/bll/CreateAllSnapshotsFromVmCommand.java index 5e269e9..41d1ed2 100644 --- a/backend/manager/modules/bll/src/main/java/org/ovirt/engine/core/bll/CreateAllSnapshotsFromVmCommand.java +++ b/backend/manager/modules/bll/src/main/java/org/ovirt/engine/core/bll/CreateAllSnapshotsFromVmCommand.java @@ -383,7 +383,7 @@ } private void handleVdsLiveSnapshotFailure(VdcBLLException e) { - log.warnFormat("Wasn't able to live snapshot due to error: {0}. VM will still be configured to the new created snapshot", + log.warnFormat("Could not live snapshot due to error: {0}. VM will still be configured to the new created snapshot", ExceptionUtils.getMessage(e)); addCustomValue("SnapshotName", getSnapshotName()); addCustomValue("VmName", getVmName()); -- To view, visit http://gerrit.ovirt.org/24383 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: Iee77b46be0948ab90de2e9ea438ef9e9b4413546 Gerrit-PatchSet: 1 Gerrit-Project: ovirt-engine Gerrit-Branch: master Gerrit-Owner: Arik Hadas <[email protected]> _______________________________________________ Engine-patches mailing list [email protected] http://lists.ovirt.org/mailman/listinfo/engine-patches
