Skip to content

Commit

Permalink
Reduce log level for logging of unknown resource types (openhab#15815)
Browse files Browse the repository at this point in the history
Resolves openhab#15468

Signed-off-by: Jacob Laursen <jacob-github@vindvejr.dk>
Signed-off-by: Jørgen Austvik <jaustvik@acm.org>
  • Loading branch information
jlaur authored and austvik committed Mar 27, 2024
1 parent c73c789 commit b93fc1d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -805,7 +805,7 @@ private Resources getResourcesImpl(ResourceReference reference)
// 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;
Expand Down

0 comments on commit b93fc1d

Please sign in to comment.