We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3be603f commit 05f67a1Copy full SHA for 05f67a1
mcpgateway/services/tool_service.py
@@ -1878,7 +1878,6 @@ async def create_tool_from_a2a_agent(
1878
ToolNameConflictError: If a tool with the same name already exists.
1879
"""
1880
# Check if tool already exists for this agent
1881
- logger.info(f"testing Creating tool for A2A agent: {vars(agent)}")
1882
tool_name = f"a2a_{agent.slug}"
1883
existing_query = select(DbTool).where(DbTool.original_name == tool_name)
1884
existing_tool = db.execute(existing_query).scalar_one_or_none()
0 commit comments