fix(CLI): Reduce severity of pending action timeout messages (#9415)

Co-authored-by: openhands <openhands@all-hands.dev>
Co-authored-by: Engel Nyst <enyst@users.noreply.github.com>
This commit is contained in:
Xingyao Wang
2025-06-27 12:28:31 -04:00
committed by GitHub
parent d3154c4bae
commit 0eb7f956a9

View File

@@ -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'},
)