From c4c873136e5ed40fbc4005970891cde1d8434929 Mon Sep 17 00:00:00 2001 From: FedericoAmura Date: Wed, 18 Dec 2024 14:42:18 +0100 Subject: [PATCH] fix: log all context path check --- packages/automation/src/lib/state-machine.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/automation/src/lib/state-machine.ts b/packages/automation/src/lib/state-machine.ts index 38a56ab6c..b3b4b9677 100644 --- a/packages/automation/src/lib/state-machine.ts +++ b/packages/automation/src/lib/state-machine.ts @@ -573,7 +573,7 @@ export class StateMachine { actionDefinitions.forEach((action) => { switch (action.key) { case 'context': - if (action.log?.path) { + if (typeof action.log?.path === 'string') { actions.push( new LogContextAction({ debug: this.debug,