From: Jacob Laursen Date: Fri, 3 Nov 2023 13:02:58 +0000 (+0100) Subject: Reduce log level for logging of unknown resource types (#15815) X-Git-Url: https://git.basschouten.com/?a=commitdiff_plain;h=740f80fff16ecce988d357191ad8d97c28a7337d;p=openhab-addons.git Reduce log level for logging of unknown resource types (#15815) Resolves #15468 Signed-off-by: Jacob Laursen --- diff --git a/bundles/org.openhab.binding.hue/src/main/java/org/openhab/binding/hue/internal/connection/Clip2Bridge.java b/bundles/org.openhab.binding.hue/src/main/java/org/openhab/binding/hue/internal/connection/Clip2Bridge.java index ad76b049d2..9a8abb1cce 100644 --- a/bundles/org.openhab.binding.hue/src/main/java/org/openhab/binding/hue/internal/connection/Clip2Bridge.java +++ b/bundles/org.openhab.binding.hue/src/main/java/org/openhab/binding/hue/internal/connection/Clip2Bridge.java @@ -805,7 +805,7 @@ public class Clip2Bridge implements Closeable { // work around for issue #15468 (and similar) ResourceType resourceType = reference.getType(); if (resourceType == ResourceType.ERROR) { - LOGGER.warn("Resource '{}' type '{}' unknown => GET aborted", reference.getId(), resourceType); + LOGGER.debug("Resource '{}' type '{}' unknown => GET aborted", reference.getId(), resourceType); return new Resources(); } Stream stream = null;