From a5ff0edacf353d5edb2cfc0ccbe7ef1e93faf34e Mon Sep 17 00:00:00 2001 From: ChuckBuilds <33324927+ChuckBuilds@users.noreply.github.com> Date: Sun, 25 May 2025 19:02:31 -0500 Subject: [PATCH] fixed name error with logging --- src/ytm_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ytm_client.py b/src/ytm_client.py index d126cdba..47928798 100644 --- a/src/ytm_client.py +++ b/src/ytm_client.py @@ -88,7 +88,7 @@ class YTMClient: except Exception as cb_ex: logging.error(f"Error executing YTMClient external_update_callback: {cb_ex}") elif not significant_change_detected: - logger.debug(f"YTM state update received but no significant change to key fields. Title: {current_key_data.get('title') if current_key_data else 'N/A'}") + logging.debug(f"YTM state update received but no significant change to key fields. Title: {current_key_data.get('title') if current_key_data else 'N/A'}") def load_config(self): default_url = "http://localhost:9863"