Remove some logging

This commit is contained in:
Jules 2024-01-20 15:17:34 +01:00
parent 2aa41f0155
commit 5c640a284f
Signed by: jdejaegh
GPG key ID: 99D6D184CA66933A
2 changed files with 0 additions and 2 deletions

View file

@ -71,7 +71,6 @@ class IrmKmiCoordinator(DataUpdateCoordinator):
raise UpdateFailed(f"Error communicating with API: {err}") raise UpdateFailed(f"Error communicating with API: {err}")
if api_data.get('cityName', None) in OUT_OF_BENELUX: if api_data.get('cityName', None) in OUT_OF_BENELUX:
_LOGGER.info(f"Config state: {self._config_entry.state}")
_LOGGER.error(f"The zone {self._zone} is now out of Benelux and forecast is only available in Benelux." _LOGGER.error(f"The zone {self._zone} is now out of Benelux and forecast is only available in Benelux."
f"Associated device is now disabled. Move the zone back in Benelux and re-enable to fix " f"Associated device is now disabled. Move the zone back in Benelux and re-enable to fix "
f"this") f"this")

View file

@ -39,7 +39,6 @@ class OutOfBeneluxRepairFlow(RepairsFlow):
errors = {} errors = {}
config_entry = self.hass.config_entries.async_get_entry(self._data['config_entry_id']) config_entry = self.hass.config_entries.async_get_entry(self._data['config_entry_id'])
_LOGGER.info(f"State of config entry: {config_entry.state}")
if user_input is not None: if user_input is not None:
if user_input[REPAIR_SOLUTION] == REPAIR_OPT_MOVE: if user_input[REPAIR_SOLUTION] == REPAIR_OPT_MOVE: