From b2516dc95f3134001946f9d8b4c28d75f6aac045 Mon Sep 17 00:00:00 2001 From: Shuchang Zheng Date: Thu, 14 Nov 2024 17:07:27 -0800 Subject: [PATCH] Failed to convert css shape to string shape by LLM log should be warning (#1197) --- skyvern/forge/agent_functions.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/skyvern/forge/agent_functions.py b/skyvern/forge/agent_functions.py index 77d24cf5..d8152089 100644 --- a/skyvern/forge/agent_functions.py +++ b/skyvern/forge/agent_functions.py @@ -250,11 +250,12 @@ async def _convert_css_shape_to_string( ) return None except Exception: - LOG.exception( + LOG.warning( "Failed to convert css shape to string shape by LLM", task_id=task.task_id, step_id=step.step_id, element_id=element_id, + exc_info=True, ) return None