]> git.basschouten.com Git - openhab-addons.git/commitdiff
Reduce log level for logging of unknown resource types (#15815)
authorJacob Laursen <jacob-github@vindvejr.dk>
Fri, 3 Nov 2023 13:02:58 +0000 (14:02 +0100)
committerGitHub <noreply@github.com>
Fri, 3 Nov 2023 13:02:58 +0000 (14:02 +0100)
Resolves #15468

Signed-off-by: Jacob Laursen <jacob-github@vindvejr.dk>
bundles/org.openhab.binding.hue/src/main/java/org/openhab/binding/hue/internal/connection/Clip2Bridge.java

index ad76b049d25fac7d7cf6ab87275ca1cd175a3c1f..9a8abb1cce9b77564cd6df4ae39007ddb02cef56 100644 (file)
@@ -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;