From 1c413b266319da68f3090e368923e02f4683c198 Mon Sep 17 00:00:00 2001 From: Nick Cooper Date: Tue, 27 May 2025 16:05:32 -0400 Subject: [PATCH] Lower log levels used for connections --- src/mcp/client/sse.py | 6 +++--- src/mcp/client/streamable_http.py | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/mcp/client/sse.py b/src/mcp/client/sse.py index 476c5c001..2013e4199 100644 --- a/src/mcp/client/sse.py +++ b/src/mcp/client/sse.py @@ -53,7 +53,7 @@ async def sse_client( async with anyio.create_task_group() as tg: try: - logger.info(f"Connecting to SSE endpoint: {remove_request_params(url)}") + logger.debug(f"Connecting to SSE endpoint: {remove_request_params(url)}") async with httpx_client_factory(headers=headers, auth=auth) as client: async with aconnect_sse( client, @@ -73,7 +73,7 @@ async def sse_reader( match sse.event: case "endpoint": endpoint_url = urljoin(url, sse.data) - logger.info( + logger.debug( f"Received endpoint URL: {endpoint_url}" ) @@ -146,7 +146,7 @@ async def post_writer(endpoint_url: str): await write_stream.aclose() endpoint_url = await tg.start(sse_reader) - logger.info( + logger.debug( f"Starting post writer with endpoint URL: {endpoint_url}" ) tg.start_soon(post_writer, endpoint_url) diff --git a/src/mcp/client/streamable_http.py b/src/mcp/client/streamable_http.py index 61aca4282..2855f606d 100644 --- a/src/mcp/client/streamable_http.py +++ b/src/mcp/client/streamable_http.py @@ -463,7 +463,7 @@ async def streamablehttp_client( async with anyio.create_task_group() as tg: try: - logger.info(f"Connecting to StreamableHTTP endpoint: {url}") + logger.debug(f"Connecting to StreamableHTTP endpoint: {url}") async with httpx_client_factory( headers=transport.request_headers,