From 51db6398530b60bd2cd2659249601d48b927205c Mon Sep 17 00:00:00 2001 From: pali Date: Sat, 13 Feb 2021 22:00:17 +0200 Subject: [PATCH] [bluetooth.enoceanble] Changed logging level for discovered devices (#10134) Signed-off-by: Pauli Anttila --- .../enoceanble/internal/EnoceanBleDiscoveryParticipant.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bundles/org.openhab.binding.bluetooth.enoceanble/src/main/java/org/openhab/binding/bluetooth/enoceanble/internal/EnoceanBleDiscoveryParticipant.java b/bundles/org.openhab.binding.bluetooth.enoceanble/src/main/java/org/openhab/binding/bluetooth/enoceanble/internal/EnoceanBleDiscoveryParticipant.java index cfc1711db..6e7bd0d40 100644 --- a/bundles/org.openhab.binding.bluetooth.enoceanble/src/main/java/org/openhab/binding/bluetooth/enoceanble/internal/EnoceanBleDiscoveryParticipant.java +++ b/bundles/org.openhab.binding.bluetooth.enoceanble/src/main/java/org/openhab/binding/bluetooth/enoceanble/internal/EnoceanBleDiscoveryParticipant.java @@ -52,7 +52,7 @@ public class EnoceanBleDiscoveryParticipant implements BluetoothDiscoveryPartici @Override public @Nullable ThingUID getThingUID(BluetoothDiscoveryDevice device) { Integer manufacturerId = device.getManufacturerId(); - logger.warn("Discovered device {} with manufacturerId {} and name {}", device.getAddress(), manufacturerId, + logger.debug("Discovered device {} with manufacturerId {} and name {}", device.getAddress(), manufacturerId, device.getName()); if (manufacturerId != null && manufacturerId == ENOCEAN_COMPANY_ID) { return new ThingUID(EnoceanBleBindingConstants.THING_TYPE_PTM215B, device.getAdapter().getUID(),