mirror of
https://github.com/home-assistant/core.git
synced 2025-08-03 20:55:10 +02:00
Suez_water: remove redundant log on refresh failure (#134025)
Suez_water: remove redundent log on refresh failure
This commit is contained in:
@@ -85,9 +85,6 @@ class SuezWaterCoordinator(DataUpdateCoordinator[SuezWaterData]):
|
||||
price=(await self._suez_client.get_price()).price,
|
||||
)
|
||||
except PySuezError as err:
|
||||
_LOGGER.exception(err)
|
||||
raise UpdateFailed(
|
||||
f"Suez coordinator error communicating with API: {err}"
|
||||
) from err
|
||||
raise UpdateFailed(f"Suez data update failed: {err}") from err
|
||||
_LOGGER.debug("Successfully fetched suez data")
|
||||
return data
|
||||
|
@@ -27,7 +27,7 @@ rules:
|
||||
|
||||
# Silver
|
||||
config-entry-unloading: done
|
||||
log-when-unavailable: todo
|
||||
log-when-unavailable: done
|
||||
entity-unavailable: done
|
||||
action-exceptions:
|
||||
status: exempt
|
||||
|
Reference in New Issue
Block a user