diff --git a/codex/utils/statemachine.nim b/codex/utils/statemachine.nim index 8f5050bb..bd7b7638 100644 --- a/codex/utils/statemachine.nim +++ b/codex/utils/statemachine.nim @@ -110,7 +110,7 @@ method exit(state: AsyncState) = proc switchAsync*(machine: StateMachineAsync, newState: AsyncState) {.async.} = if state =? (machine.state as AsyncState): - trace "Switching sales state", `from`=state, to=newState + trace "Switching sales state", `from` = $state, to = $newState if activeTransition =? state.activeTransition and not activeTransition.completed: await activeTransition.cancelAndWait() @@ -119,7 +119,7 @@ proc switchAsync*(machine: StateMachineAsync, newState: AsyncState) {.async.} = await state.exitAsync() state.context = none StateMachine else: - trace "Switching sales state", `from`="no state", to=newState + trace "Switching sales state", `from` = "no state", to = $newState machine.state = some State(newState) newState.context = some StateMachine(machine)