@@ -154,13 +154,13 @@ async def get_client(
154154 # Outcome: route strictly based on explicit flag.
155155 if _explicit_routing ():
156156 if _force_local_mode ():
157- logger .info ("Explicit local routing enabled - using ASGI client" )
157+ logger .debug ("Explicit local routing enabled - using ASGI client" )
158158 async with _asgi_client (timeout ) as client :
159159 yield client
160160 return
161161
162162 if _force_cloud_mode ():
163- logger .info ("Explicit cloud routing enabled - using cloud proxy client" )
163+ logger .debug ("Explicit cloud routing enabled - using cloud proxy client" )
164164 async with _cloud_client (config , timeout , workspace = workspace ) as client :
165165 yield client
166166 return
@@ -172,7 +172,7 @@ async def get_client(
172172 if project_name is not None and not _explicit_routing ():
173173 project_mode = config .get_project_mode (project_name )
174174 if project_mode == ProjectMode .CLOUD :
175- logger .info (f"Project '{ project_name } ' is cloud mode - using cloud proxy client" )
175+ logger .debug (f"Project '{ project_name } ' is cloud mode - using cloud proxy client" )
176176 try :
177177 async with _cloud_client (config , timeout , workspace = workspace ) as client :
178178 yield client
@@ -183,13 +183,13 @@ async def get_client(
183183 ) from exc
184184 return
185185
186- logger .info (f"Project '{ project_name } ' is local mode - using ASGI client" )
186+ logger .debug (f"Project '{ project_name } ' is local mode - using ASGI client" )
187187 async with _asgi_client (timeout ) as client :
188188 yield client
189189 return
190190
191191 # --- Default fallback ---
192- logger .info ("Default routing - using ASGI client for local Basic Memory API" )
192+ logger .debug ("Default routing - using ASGI client for local Basic Memory API" )
193193 async with _asgi_client (timeout ) as client :
194194 yield client
195195
0 commit comments