diff --git a/openhands/runtime/impl/action_execution/action_execution_client.py b/openhands/runtime/impl/action_execution/action_execution_client.py index ee69e35e6056..d36c34d0f1ea 100644 --- a/openhands/runtime/impl/action_execution/action_execution_client.py +++ b/openhands/runtime/impl/action_execution/action_execution_client.py @@ -8,6 +8,7 @@ import requests +from openhands.core import logger from openhands.core.config import AppConfig from openhands.core.exceptions import ( AgentRuntimeTimeoutError, @@ -93,6 +94,7 @@ def _send_action_server_request( Raises: AgentRuntimeError: If the request fails """ + logger.openhands_logger.debug(f'Sending request: {method} {url} {kwargs}') return send_request(self.session, method, url, **kwargs) def check_if_alive(self) -> None: