Mark debug logs as debug
This commit is contained in:
parent
81c6d2468c
commit
6ef05a9a8f
1 changed files with 3 additions and 3 deletions
|
@ -174,7 +174,7 @@ class Client:
|
||||||
self.quit_callback,
|
self.quit_callback,
|
||||||
)
|
)
|
||||||
self.connection_state.set_mpv_running()
|
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.register_handlers()
|
||||||
self.queue_callbacks: list[Callable[[list[Entry]], None]] = []
|
self.queue_callbacks: list[Callable[[list[Entry]], None]] = []
|
||||||
|
|
||||||
|
@ -248,8 +248,8 @@ class Client:
|
||||||
terminated.
|
terminated.
|
||||||
"""
|
"""
|
||||||
logger.info("Disconnecting from server")
|
logger.info("Disconnecting from server")
|
||||||
logger.info(f"Connection: {self.connection_state.is_connected()}")
|
logger.debug(f"Connection: {self.connection_state.is_connected()}")
|
||||||
logger.info(f"MPV: {self.connection_state.is_mpv_running()}")
|
logger.debug(f"MPV running: {self.connection_state.is_mpv_running()}")
|
||||||
if self.connection_state.is_connected():
|
if self.connection_state.is_connected():
|
||||||
await self.sio.disconnect()
|
await self.sio.disconnect()
|
||||||
if self.connection_state.is_mpv_running():
|
if self.connection_state.is_mpv_running():
|
||||||
|
|
Loading…
Add table
Reference in a new issue