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 <cdoern@redhat.com>
This commit is contained in:
Charlie Doern 2025-07-28 09:55:11 -04:00
parent 09abdb0a37
commit ed3e843e09

View file

@ -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()