1
mirror of https://github.com/home-assistant/core synced 2024-09-09 12:51:22 +02:00

Fix ping log level to be debug instead of warning (#39900)

This commit is contained in:
J. Nick Koston 2020-09-10 11:10:43 -05:00 committed by GitHub
parent 40bcd38caa
commit b5005430be
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -134,7 +134,7 @@ class PingDataICMPLib(PingData):
async def async_update(self) -> None:
"""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(
partial(
icmp_ping,