From 6ef05a9a8f896920e3ece2092081341aba58fa13 Mon Sep 17 00:00:00 2001 From: Christoph Stahl Date: Tue, 17 Jun 2025 00:11:46 +0200 Subject: [PATCH] Mark debug logs as debug --- syng/client.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/syng/client.py b/syng/client.py index ff8f246..e92a921 100644 --- a/syng/client.py +++ b/syng/client.py @@ -174,7 +174,7 @@ class Client: self.quit_callback, ) self.connection_state.set_mpv_running() - logger.info(f"MPV: {self.connection_state.is_mpv_running()} ") + logger.debug(f"MPV running: {self.connection_state.is_mpv_running()} ") self.register_handlers() self.queue_callbacks: list[Callable[[list[Entry]], None]] = [] @@ -248,8 +248,8 @@ class Client: terminated. """ logger.info("Disconnecting from server") - logger.info(f"Connection: {self.connection_state.is_connected()}") - logger.info(f"MPV: {self.connection_state.is_mpv_running()}") + logger.debug(f"Connection: {self.connection_state.is_connected()}") + logger.debug(f"MPV running: {self.connection_state.is_mpv_running()}") if self.connection_state.is_connected(): await self.sio.disconnect() if self.connection_state.is_mpv_running():