Fritz device tracker: set 'scanning' log to debug (#26043)

Changed the logging level for the polling of the fritz device tracker from info to debug.  The message was logged up to 6 times per minute and bloated the log file.
This commit is contained in:
ThaSiouL 2019-08-18 17:08:26 +02:00 committed by Daniel Høyer Iversen
parent 2a39d1209c
commit 10d63e46d7

View File

@ -85,6 +85,6 @@ class FritzBoxScanner(DeviceScanner):
if not self.success_init:
return False
_LOGGER.info("Scanning")
_LOGGER.debug("Scanning")
self.last_results = self.fritz_box.get_hosts_info()
return True