Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions devolo_home_control_api/mydevolo.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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()
7 changes: 7 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down