File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ async def sse_client(
53
53
54
54
async with anyio .create_task_group () as tg :
55
55
try :
56
- logger .info (f"Connecting to SSE endpoint: { remove_request_params (url )} " )
56
+ logger .debug (f"Connecting to SSE endpoint: { remove_request_params (url )} " )
57
57
async with httpx_client_factory (headers = headers , auth = auth ) as client :
58
58
async with aconnect_sse (
59
59
client ,
@@ -73,7 +73,7 @@ async def sse_reader(
73
73
match sse .event :
74
74
case "endpoint" :
75
75
endpoint_url = urljoin (url , sse .data )
76
- logger .info (
76
+ logger .debug (
77
77
f"Received endpoint URL: { endpoint_url } "
78
78
)
79
79
@@ -146,7 +146,7 @@ async def post_writer(endpoint_url: str):
146
146
await write_stream .aclose ()
147
147
148
148
endpoint_url = await tg .start (sse_reader )
149
- logger .info (
149
+ logger .debug (
150
150
f"Starting post writer with endpoint URL: { endpoint_url } "
151
151
)
152
152
tg .start_soon (post_writer , endpoint_url )
Original file line number Diff line number Diff line change @@ -463,7 +463,7 @@ async def streamablehttp_client(
463
463
464
464
async with anyio .create_task_group () as tg :
465
465
try :
466
- logger .info (f"Connecting to StreamableHTTP endpoint: { url } " )
466
+ logger .debug (f"Connecting to StreamableHTTP endpoint: { url } " )
467
467
468
468
async with httpx_client_factory (
469
469
headers = transport .request_headers ,
You can’t perform that action at this time.
0 commit comments