From 46e2989312801ccdfe60befac708c95ff6abb2c1 Mon Sep 17 00:00:00 2001 From: Charlie Doern Date: Mon, 28 Jul 2025 13:02:54 -0400 Subject: [PATCH] fix: switch refresh to debug log (#2933) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit # What does this PR do? the server logs have a persistent `core: refreshing registry` log that clogs up the output. Switch it to debug this is what it looked like: Screenshot 2025-07-28 at 9 56
44 AM 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()