Skip to content

Commit

Permalink
fix(llm_node): Removes redundant exception logging
Browse files Browse the repository at this point in the history
Signed-off-by: -LAN- <[email protected]>
  • Loading branch information
laipz8200 committed Nov 26, 2024
1 parent 2927493 commit 373ee8a
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion api/core/workflow/nodes/llm/node.py
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,6 @@ def _run(self) -> NodeRunResult | Generator[NodeEvent | InNodeEvent, None, None]
)
return
except Exception as e:
logger.exception(f"Node {self.node_id} failed to run")
yield RunCompletedEvent(
run_result=NodeRunResult(
status=WorkflowNodeExecutionStatus.FAILED,
Expand Down

0 comments on commit 373ee8a

Please sign in to comment.