mirror of
https://github.com/aljazceru/mcp-python-sdk.git
synced 2025-12-19 14:54:24 +01:00
RFC: Lower log levels used for connections (#821)
This commit is contained in:
@@ -53,7 +53,7 @@ async def sse_client(
|
|||||||
|
|
||||||
async with anyio.create_task_group() as tg:
|
async with anyio.create_task_group() as tg:
|
||||||
try:
|
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 httpx_client_factory(headers=headers, auth=auth) as client:
|
||||||
async with aconnect_sse(
|
async with aconnect_sse(
|
||||||
client,
|
client,
|
||||||
@@ -73,7 +73,7 @@ async def sse_client(
|
|||||||
match sse.event:
|
match sse.event:
|
||||||
case "endpoint":
|
case "endpoint":
|
||||||
endpoint_url = urljoin(url, sse.data)
|
endpoint_url = urljoin(url, sse.data)
|
||||||
logger.info(
|
logger.debug(
|
||||||
f"Received endpoint URL: {endpoint_url}"
|
f"Received endpoint URL: {endpoint_url}"
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -146,7 +146,7 @@ async def sse_client(
|
|||||||
await write_stream.aclose()
|
await write_stream.aclose()
|
||||||
|
|
||||||
endpoint_url = await tg.start(sse_reader)
|
endpoint_url = await tg.start(sse_reader)
|
||||||
logger.info(
|
logger.debug(
|
||||||
f"Starting post writer with endpoint URL: {endpoint_url}"
|
f"Starting post writer with endpoint URL: {endpoint_url}"
|
||||||
)
|
)
|
||||||
tg.start_soon(post_writer, endpoint_url)
|
tg.start_soon(post_writer, endpoint_url)
|
||||||
|
|||||||
@@ -463,7 +463,7 @@ async def streamablehttp_client(
|
|||||||
|
|
||||||
async with anyio.create_task_group() as tg:
|
async with anyio.create_task_group() as tg:
|
||||||
try:
|
try:
|
||||||
logger.info(f"Connecting to StreamableHTTP endpoint: {url}")
|
logger.debug(f"Connecting to StreamableHTTP endpoint: {url}")
|
||||||
|
|
||||||
async with httpx_client_factory(
|
async with httpx_client_factory(
|
||||||
headers=transport.request_headers,
|
headers=transport.request_headers,
|
||||||
|
|||||||
Reference in New Issue
Block a user