From 67f7de14033411faa4433cf602227b91f0e549b4 Mon Sep 17 00:00:00 2001 From: M Valla <12682715+mvalla@users.noreply.github.com> Date: Sun, 12 Dec 2021 13:21:52 +0100 Subject: [PATCH] [openwebnet] reduced log messages during UPnP bridge discovery (#11705) Signed-off-by: Massimo Valla --- .../internal/discovery/BusGatewayUpnpDiscovery.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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; }