fix: argument conversion error for logger [LET-6314] (#6355)

fix: argument conversion error for logger
This commit is contained in:
cthomas
2025-11-24 16:25:07 -08:00
committed by Caren Thomas
parent e4fb00fef8
commit c0e62c8eaf

View File

@@ -1939,7 +1939,7 @@ async def list_groups_for_agent(
):
"""Lists the groups for an agent."""
actor = await server.user_manager.get_actor_or_default_async(actor_id=headers.actor_id)
logger.info("in list agents with manager_type", manager_type)
logger.info("in list agents with manager_type: %s", manager_type)
return await server.agent_manager.list_groups_async(
agent_id=agent_id,
manager_type=manager_type,