chore(output.py): remove debug print statements for cleaner code and improved readability

This commit is contained in:
Ariel Frischer 2025-02-12 13:50:37 -08:00
parent 803acc6166
commit 6e8b0f2e42
1 changed files with 0 additions and 2 deletions

View File

@ -44,8 +44,6 @@ def print_agent_output(chunk: Dict[str, Any]) -> None:
)
)
tool_name = getattr(msg, "name", None)
cpm(f"type(msg): {type(msg)}")
cpm(f"msg: {msg}")
raise ToolExecutionError(err_msg, tool_name=tool_name, base_message=msg)