diff --git a/devolo_home_control_api/mydevolo.py b/devolo_home_control_api/mydevolo.py index ccd687e..a171361 100644 --- a/devolo_home_control_api/mydevolo.py +++ b/devolo_home_control_api/mydevolo.py @@ -141,7 +141,7 @@ def maintenance(self) -> bool: state = self._call(f"{self.url}/v1/hc/maintenance")["state"] if state == "on": return False - self._logger.warning("devolo Home Control is in maintenance mode.") + self._logger.debug("devolo Home Control is in maintenance mode.") return True @lru_cache(maxsize=1) # noqa: B019 @@ -162,7 +162,7 @@ def _call(self, url: str) -> dict[str, Any]: raise WrongUrlError(url) if responds.status_code == HTTPStatus.SERVICE_UNAVAILABLE: # mydevolo sends a 503, if the gateway is offline - self._logger.warning("The requested gateway seems to be offline.") + self._logger.debug("The requested gateway seems to be offline.") raise GatewayOfflineError return responds.json() diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 4e46ae3..2616a11 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [v0.19.1] - 2025/11/06 + +### Changed + +- Because of the Home Control server shutdown, warnings about Home Control being in maintenance mode are now only debug messages +- Because of the Home Control server shutdown, warnings about about offline central units are now only debug messages + ## [v0.19.0] - 2025/04/28 ### Added