Browse Source

fix(44-03): use valid LogCategory for dimmed node skip logging

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
handoff-20260429-1057
shrimbly 5 months ago
parent
commit
6f6818ded2
  1. 2
      src/store/workflowStore.ts

2
src/store/workflowStore.ts

@ -933,7 +933,7 @@ const workflowStoreImpl: StateCreator<WorkflowStore> = (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,
});

Loading…
Cancel
Save