From ff267890d124887dd4a0d70378561c5f51e6229b Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Mon, 10 Jul 2023 09:21:12 -0400 Subject: [PATCH] Change cached-client hit msg to runtime level --- piker/brokers/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/piker/brokers/__init__.py b/piker/brokers/__init__.py index 87a0446a..8817842e 100644 --- a/piker/brokers/__init__.py +++ b/piker/brokers/__init__.py @@ -106,6 +106,6 @@ async def open_cached_client( ) as (cache_hit, client): if cache_hit: - log.info(f'Reusing existing {client}') + log.runtime(f'Reusing existing {client}') yield client