Fix ping log level to be debug instead of warning (#39900)
parent
40bcd38caa
commit
b5005430be
|
@ -134,7 +134,7 @@ class PingDataICMPLib(PingData):
|
||||||
|
|
||||||
async def async_update(self) -> None:
|
async def async_update(self) -> None:
|
||||||
"""Retrieve the latest details from the host."""
|
"""Retrieve the latest details from the host."""
|
||||||
_LOGGER.warning("ping address: %s", self._ip_address)
|
_LOGGER.debug("ping address: %s", self._ip_address)
|
||||||
data = await self.hass.async_add_executor_job(
|
data = await self.hass.async_add_executor_job(
|
||||||
partial(
|
partial(
|
||||||
icmp_ping,
|
icmp_ping,
|
||||||
|
|
Loading…
Reference in New Issue