From 9d82ce6ea90d9364d340b5216f68014bfc0518d5 Mon Sep 17 00:00:00 2001 From: Fabio Manganiello Date: Mon, 1 May 2023 21:25:42 +0200 Subject: [PATCH] Noisy beacons notice back to debug level. There's just too many of them and it ends up polluting the logs. --- 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 eb03bd14f..8cd9bb9e1 100644 --- a/platypush/plugins/bluetooth/_ble/_event_handler.py +++ b/platypush/plugins/bluetooth/_ble/_event_handler.py @@ -156,7 +156,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, )