From ed3e843e09b83dd998c942465eaa280178cdcd6f Mon Sep 17 00:00:00 2001 From: Charlie Doern Date: Mon, 28 Jul 2025 09:55:11 -0400 Subject: [PATCH] fix: switch refresh to debug log the server logs have a persistent `core: refreshing registry` log that clogs up the output. Switch it to debug Signed-off-by: Charlie Doern --- llama_stack/distribution/stack.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llama_stack/distribution/stack.py b/llama_stack/distribution/stack.py index 811e188f9..40e0b9b50 100644 --- a/llama_stack/distribution/stack.py +++ b/llama_stack/distribution/stack.py @@ -358,7 +358,7 @@ async def shutdown_stack(impls: dict[Api, Any]): async def refresh_registry_once(impls: dict[Api, Any]): - logger.info("refreshing registry") + logger.debug("refreshing registry") routing_tables = [v for v in impls.values() if isinstance(v, CommonRoutingTableImpl)] for routing_table in routing_tables: await routing_table.refresh()