Use debug/warning instead of info log level in components [u] (#126148)

pull/126170/head
Jan-Philipp Benecke 2024-09-18 11:08:12 +02:00 committed by GitHub
parent dbb6eaa9eb
commit 987b8af1b1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -123,7 +123,7 @@ class UbusDeviceScanner(DeviceScanner):
if not self.success_init:
return False
_LOGGER.info("Checking hostapd")
_LOGGER.debug("Checking hostapd")
if not self.hostapd:
hostapd = self.ubus.get_hostapd()

View File

@ -164,7 +164,7 @@ class ProtectData:
self._auth_failures = 0
if not was_success:
_LOGGER.info("%s: Connection restored", self._entry.title)
_LOGGER.warning("%s: Connection restored", self._entry.title)
self._async_process_updates()
elif force_update:
self._async_process_updates()