Correcting misleading log message

This commit is contained in:
Armin Schrenk
2021-04-20 16:53:59 +02:00
parent dc3a951a1b
commit 4e177c9ea7

View File

@@ -83,7 +83,7 @@ public class VaultState extends ObservableValueBase<VaultState.Value> implements
if (success) {
fireValueChangedEvent();
} else {
LOG.debug("Failed transiting into state {}: Expected state was {}, but actual state is {}.", fromState, toState, value.get());
LOG.debug("Failed transiting into state {}: Expected state was not{}.", fromState, toState);
}
return success;
}