Skip to content

Commit

Permalink
fix: log all context path check
Browse files Browse the repository at this point in the history
  • Loading branch information
FedericoAmura committed Dec 18, 2024
1 parent 32ac3e9 commit c4c8731
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/automation/src/lib/state-machine.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit c4c8731

Please sign in to comment.