Reduce log level for logging of unknown resource types (#15815)

Resolves #15468

Signed-off-by: Jacob Laursen <jacob-github@vindvejr.dk>
This commit is contained in:
Jacob Laursen
2023-11-03 14:02:58 +01:00
committed by GitHub
parent cf6f531ab3
commit 740f80fff1

View 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;