Use debug/warning instead of info log level in components [u] (#126148)
parent
dbb6eaa9eb
commit
987b8af1b1
|
@ -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()
|
||||
|
|
|
@ -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()
|
||||
|
|
Loading…
Reference in New Issue