From 6f6818ded25a877b129a5c04fba4f52485de3a29 Mon Sep 17 00:00:00 2001 From: shrimbly Date: Wed, 25 Feb 2026 23:04:28 +1300 Subject: [PATCH] fix(44-03): use valid LogCategory for dimmed node skip logging Co-Authored-By: Claude Opus 4.6 --- src/store/workflowStore.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/store/workflowStore.ts b/src/store/workflowStore.ts index 7c429a46..994529d3 100644 --- a/src/store/workflowStore.ts +++ b/src/store/workflowStore.ts @@ -933,7 +933,7 @@ const workflowStoreImpl: StateCreator = (set, get) => ({ if (dimmedNodeIds.has(node.id)) { // Skip execution — node is dimmed // Keep previous output visible (don't clear node data) - logger.info('workflow.skip', 'Node skipped (downstream of disabled Switch)', { + logger.info('node.execution', 'Node skipped (downstream of disabled Switch)', { nodeId: node.id, nodeType: node.type, });