From 8ed1b1782ef9330d910f8b292f82ba915607db8a Mon Sep 17 00:00:00 2001 From: eyager1 <44526531+eyager1@users.noreply.github.com> Date: Mon, 8 Jun 2020 05:30:36 -0400 Subject: [PATCH] Change logging of successful scans to debug priority (#36538) --- homeassistant/components/ddwrt/device_tracker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/ddwrt/device_tracker.py b/homeassistant/components/ddwrt/device_tracker.py index 27f6895fc43..9b6fd1bdb64 100644 --- a/homeassistant/components/ddwrt/device_tracker.py +++ b/homeassistant/components/ddwrt/device_tracker.py @@ -113,7 +113,7 @@ class DdWrtDeviceScanner(DeviceScanner): Return boolean if scanning successful. """ - _LOGGER.info("Checking ARP") + _LOGGER.debug("Checking ARP") endpoint = "Wireless" if self.wireless_only else "Lan" url = f"{self.protocol}://{self.host}/Status_{endpoint}.live.asp"