mirror of
https://github.com/home-assistant/core.git
synced 2025-05-05 14:39:16 +00:00
Suez_water: remove redundant log on refresh failure (#134025)
Suez_water: remove redundent log on refresh failure
This commit is contained in:
parent
adc97b6c15
commit
a53c92d4b5
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user