From e10bec88c06a9dd58caabe7983bd37713c6102c3 Mon Sep 17 00:00:00 2001 From: Fabio Manganiello Date: Wed, 22 Mar 2023 16:31:57 +0100 Subject: [PATCH] Noisy beacons logging trace moved from info to 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 00af5d10..ecd430e8 100644 --- a/platypush/plugins/bluetooth/_ble/_event_handler.py +++ b/platypush/plugins/bluetooth/_ble/_event_handler.py @@ -148,7 +148,7 @@ class EventHandler: new_entity = device_to_entity(device, data) if self._exclude_known_noisy_beacons and self._is_noisy_beacon(new_entity): - logger.info( + logger.debug( 'exclude_known_noisy_beacons is set to True: skipping beacon from device %s', device.address, )