#17 Логгирование #21

Manually merged
mrkan merged 12 commits from #17-logger-config into main 2026-05-02 10:10:22 +00:00
Showing only changes of commit daca5ee05b - Show all commits

View file

@ -36,7 +36,8 @@ def create_agent() -> Agent:
logger.info(f"Init composio with user_id: {composio_user_id}")
session = composio.create(user_id=composio_user_id)
tools = session.tools()
logger.debug(f"Composio tools: {tools} for user_id: {composio_user_id}")
tool_names = [t.name for t in tools] if tools else []
logger.debug(f"Composio tools ({len(tool_names)}): {tool_names} for user_id: {composio_user_id}")
workspace_dir = os.environ["WORKSPACE_DIR"]