From 0eb7f956a94687a618ecf88e0844f7c12e0e3402 Mon Sep 17 00:00:00 2001 From: Xingyao Wang Date: Fri, 27 Jun 2025 12:28:31 -0400 Subject: [PATCH] fix(CLI): Reduce severity of pending action timeout messages (#9415) Co-authored-by: openhands Co-authored-by: Engel Nyst --- openhands/controller/agent_controller.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openhands/controller/agent_controller.py b/openhands/controller/agent_controller.py index d75a090d02..661775febd 100644 --- a/openhands/controller/agent_controller.py +++ b/openhands/controller/agent_controller.py @@ -887,7 +887,7 @@ class AgentController: action_id = getattr(action, 'id', 'unknown') action_type = type(action).__name__ self.log( - 'warning', + 'info', f'Pending action active for {elapsed_time:.2f}s: {action_type} (id={action_id})', extra={'msg_type': 'PENDING_ACTION_TIMEOUT'}, )