diff --git a/bundles/org.openhab.binding.openwebnet/src/main/java/org/openhab/binding/openwebnet/internal/discovery/BusGatewayUpnpDiscovery.java b/bundles/org.openhab.binding.openwebnet/src/main/java/org/openhab/binding/openwebnet/internal/discovery/BusGatewayUpnpDiscovery.java index 2190cc9cb..b2b4f29dc 100644 --- a/bundles/org.openhab.binding.openwebnet/src/main/java/org/openhab/binding/openwebnet/internal/discovery/BusGatewayUpnpDiscovery.java +++ b/bundles/org.openhab.binding.openwebnet/src/main/java/org/openhab/binding/openwebnet/internal/discovery/BusGatewayUpnpDiscovery.java @@ -150,10 +150,10 @@ public class BusGatewayUpnpDiscovery implements UpnpDiscoveryParticipant { @Override public @Nullable DiscoveryResult createResult(RemoteDevice device) { - logger.info("Found device {}", device.getType()); + logger.debug("Found device {}", device.getType()); DeviceInfo devInfo = new DeviceInfo(device); if (!devInfo.manufacturer.matches("")) { - logger.info(" |- {} ({})", devInfo.modelName, devInfo.manufacturer); + logger.debug(" |- {} ({})", devInfo.modelName, devInfo.manufacturer); } ThingUID thingId = generateThingUID(devInfo); if (thingId != null) { @@ -226,7 +226,7 @@ public class BusGatewayUpnpDiscovery implements UpnpDiscoveryParticipant { } } } - logger.info("Found BTicino device: not a OpenWebNet gateway or is not supported (UDN={})", idString); + logger.info("Found BTicino device: not a OpenWebNet gateway or not supported (UDN={})", idString); } return null; }