]> git.basschouten.com Git - openhab-addons.git/commitdiff
[bluetooth.enoceanble] Changed logging level for discovered devices (#10134)
authorpali <pauli.anttila@gmail.com>
Sat, 13 Feb 2021 20:00:17 +0000 (22:00 +0200)
committerGitHub <noreply@github.com>
Sat, 13 Feb 2021 20:00:17 +0000 (12:00 -0800)
Signed-off-by: Pauli Anttila <pauli.anttila@gmail.com>
bundles/org.openhab.binding.bluetooth.enoceanble/src/main/java/org/openhab/binding/bluetooth/enoceanble/internal/EnoceanBleDiscoveryParticipant.java

index cfc1711db168e1c0fa553e97834c3c98962d6dbd..6e7bd0d40f6b19a336b6557d5a68334cd1e26a4d 100644 (file)
@@ -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(),