mirror of
https://github.com/home-assistant/core.git
synced 2025-07-16 17:57:11 +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,
|
price=(await self._suez_client.get_price()).price,
|
||||||
)
|
)
|
||||||
except PySuezError as err:
|
except PySuezError as err:
|
||||||
_LOGGER.exception(err)
|
raise UpdateFailed(f"Suez data update failed: {err}") from err
|
||||||
raise UpdateFailed(
|
|
||||||
f"Suez coordinator error communicating with API: {err}"
|
|
||||||
) from err
|
|
||||||
_LOGGER.debug("Successfully fetched suez data")
|
_LOGGER.debug("Successfully fetched suez data")
|
||||||
return data
|
return data
|
||||||
|
@ -27,7 +27,7 @@ rules:
|
|||||||
|
|
||||||
# Silver
|
# Silver
|
||||||
config-entry-unloading: done
|
config-entry-unloading: done
|
||||||
log-when-unavailable: todo
|
log-when-unavailable: done
|
||||||
entity-unavailable: done
|
entity-unavailable: done
|
||||||
action-exceptions:
|
action-exceptions:
|
||||||
status: exempt
|
status: exempt
|
||||||
|
Loading…
x
Reference in New Issue
Block a user