From 3febfabdd7227d4b53a11cda970ac25db75438aa Mon Sep 17 00:00:00 2001 From: Fabio Manganiello Date: Mon, 1 May 2023 22:10:06 +0200 Subject: [PATCH] Bluetooth LE blacklisted device notices moved `info -> debug`. --- platypush/plugins/bluetooth/_ble/_event_handler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platypush/plugins/bluetooth/_ble/_event_handler.py b/platypush/plugins/bluetooth/_ble/_event_handler.py index 8cd9bb9e1..c8ca08df1 100644 --- a/platypush/plugins/bluetooth/_ble/_event_handler.py +++ b/platypush/plugins/bluetooth/_ble/_event_handler.py @@ -163,7 +163,7 @@ class EventHandler: return if self._blacklist.matches(new_entity): - logger.info('Ignoring blacklisted device: %s', device.address) + logger.debug('Ignoring blacklisted device: %s', device.address) return # Extend the new entity with children entities added by the plugins