From 9688f78d0dd0e93b97d91b5e22f17eb174e83481 Mon Sep 17 00:00:00 2001 From: Olivier <16240457+TiTidom-RC@users.noreply.github.com> Date: Sun, 21 Jun 2026 09:28:29 +0200 Subject: [PATCH] Bump version and lower notification log level Update plugin version to 1.4.1 and reduce log verbosity in tvremoted: change several notification logs (is_available, is_on, current_app, volume_info) from INFO to DEBUG, and switch an on-demand ADB connection log to DEBUG to reduce noise during normal operation. Files changed: plugin_info/info.json, resources/tvremoted/tvremoted.py. --- plugin_info/info.json | 2 +- resources/tvremoted/tvremoted.py | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/plugin_info/info.json b/plugin_info/info.json index 82c34c8..3c6f800 100644 --- a/plugin_info/info.json +++ b/plugin_info/info.json @@ -1,7 +1,7 @@ { "id": "tvremote", "name": "TV Remote", - "pluginVersion": "1.4.0", + "pluginVersion": "1.4.1", "description": { "fr_FR": "Plugin pour contrôler les équipements Android de type Télévision (Sony, Nvidia Shield, Freebox TV, etc...) via le service de télécommande Google (TVRemote) ou via ADB. Il permet de contrôler les différentes fonctions de sa télévision (power, volume, entrées HDMI, lancement d'applications, chaînes TV, navigation dans l'interface, etc...)", "en_US": "Plugin to control Android TV devices (Sony, Nvidia Shield, Freebox TV, etc...) via Google remote control service (TVRemote) or via ADB. It allows you to control various functions of your TV (power, volume, HDMI inputs, launching applications, TV channels, navigating the interface, etc...)", diff --git a/resources/tvremoted/tvremoted.py b/resources/tvremoted/tvremoted.py index 11a3727..5995efa 100644 --- a/resources/tvremoted/tvremoted.py +++ b/resources/tvremoted/tvremoted.py @@ -171,7 +171,7 @@ async def main(self) -> None: self._logger.debug(traceback.format_exc()) def is_available_updated(is_available: bool) -> None: - self._logger.info("[EQRemote][Is_Available][%s] Notification :: %s", self._macAddr, is_available) + self._logger.debug("[EQRemote][Is_Available][%s] Notification :: %s", self._macAddr, is_available) try: # UpdateLastTime currentTime = int(time.time()) @@ -193,7 +193,7 @@ def is_available_updated(is_available: bool) -> None: self._logger.debug(traceback.format_exc()) def is_on_updated(is_on: bool) -> None: - self._logger.info("[EQRemote][Is_On][%s] Notification :: %s", self._macAddr, is_on) + self._logger.debug("[EQRemote][Is_On][%s] Notification :: %s", self._macAddr, is_on) try: # UpdateLastTime currentTime = int(time.time()) @@ -215,7 +215,7 @@ def is_on_updated(is_on: bool) -> None: self._logger.debug(traceback.format_exc()) def current_app_updated(current_app: str) -> None: - self._logger.info("[EQRemote][Current_App][%s] Notification :: %s", self._macAddr, current_app) + self._logger.debug("[EQRemote][Current_App][%s] Notification :: %s", self._macAddr, current_app) try: # UpdateLastTime currentTime = int(time.time()) @@ -236,7 +236,7 @@ def current_app_updated(current_app: str) -> None: self._logger.debug(traceback.format_exc()) def volume_info_updated(volume_info: VolumeInfo) -> None: - self._logger.info("[EQRemote][Volume_Info][%s] Notification :: %s", self._macAddr, volume_info) + self._logger.debug("[EQRemote][Volume_Info][%s] Notification :: %s", self._macAddr, volume_info) try: # UpdateLastTime currentTime = int(time.time()) @@ -690,7 +690,7 @@ async def send_command(self, action: str | None = None, value: str | None = None # Connect on-demand if not already connected if not self._persistent_connection and not self._connected: - self._logger.info("[EQRemoteADB][SendCommand] On-demand mode: connecting...") + self._logger.debug("[EQRemoteADB][SendCommand] On-demand mode: connecting...") if self._adb is None: self._adb = AdbDeviceTcpAsync(self._host, self._port, default_transport_timeout_s=self._config.adb_timeout)