mirror of
https://github.com/home-assistant/core.git
synced 2025-08-09 15:45:08 +02:00
Don't log Shelly push update failures if there are no errors (#120189)
This commit is contained in:
@@ -404,9 +404,10 @@ class ShellyBlockCoordinator(ShellyCoordinatorBase[BlockDevice]):
|
|||||||
"ip_address": self.device.ip_address,
|
"ip_address": self.device.ip_address,
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
LOGGER.debug(
|
if self._push_update_failures:
|
||||||
"Push update failures for %s: %s", self.name, self._push_update_failures
|
LOGGER.debug(
|
||||||
)
|
"Push update failures for %s: %s", self.name, self._push_update_failures
|
||||||
|
)
|
||||||
self.async_set_updated_data(None)
|
self.async_set_updated_data(None)
|
||||||
|
|
||||||
def async_setup(self, pending_platforms: list[Platform] | None = None) -> None:
|
def async_setup(self, pending_platforms: list[Platform] | None = None) -> None:
|
||||||
|
Reference in New Issue
Block a user