From: M Valla <12682715+mvalla@users.noreply.github.com> Date: Sun, 12 Dec 2021 12:21:52 +0000 (+0100) Subject: [openwebnet] reduced log messages during UPnP bridge discovery (#11705) X-Git-Url: https://git.basschouten.com/?a=commitdiff_plain;h=67f7de14033411faa4433cf602227b91f0e549b4;p=openhab-addons.git [openwebnet] reduced log messages during UPnP bridge discovery (#11705) Signed-off-by: Massimo Valla --- 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 2190cc9cb2..b2b4f29dc0 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; }