[java-oidc-common] branch main updated: Adjust a log level.
Henri Mikkonen
henri.mikkonen at iki.fi
Fri Feb 19 08:43:00 UTC 2021
This is an automated email from the git hooks/post-receive script.
hjmikkon pushed a commit to branch main
in repository java-oidc-common.
View the commit online:
http://git.shibboleth.net/view/?p=java-oidc-common.git;a=commit;h=f583fc8bf2defafe1c721733a4d71c05286c6211
The following commit(s) were added to refs/heads/main by this push:
new f583fc8 Adjust a log level.
f583fc8 is described below
commit f583fc8bf2defafe1c721733a4d71c05286c6211
Author: Henri Mikkonen <henri.mikkonen at iki.fi>
AuthorDate: Fri Feb 19 10:42:14 2021 +0200
Adjust a log level.
Empty client ID criterion for storage-based client information resolver
shouldn't be warned.
---
.../oidc/metadata/impl/StorageServiceClientInformationResolver.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/oidc-common-metadata-impl/src/main/java/net/shibboleth/oidc/metadata/impl/StorageServiceClientInformationResolver.java b/oidc-common-metadata-impl/src/main/java/net/shibboleth/oidc/metadata/impl/StorageServiceClientInformationResolver.java
index a9d4ad9..09935c4 100644
--- a/oidc-common-metadata-impl/src/main/java/net/shibboleth/oidc/metadata/impl/StorageServiceClientInformationResolver.java
+++ b/oidc-common-metadata-impl/src/main/java/net/shibboleth/oidc/metadata/impl/StorageServiceClientInformationResolver.java
@@ -107,7 +107,7 @@ public class StorageServiceClientInformationResolver extends BaseStorageServiceC
final ClientIDCriterion clientIdCriterion = criteria.get(ClientIDCriterion.class);
if (clientIdCriterion == null || clientIdCriterion.getClientID() == null) {
- log.warn("No client ID criteria found, returning empty set.");
+ log.info("No client ID criteria found, returning empty set.");
return Collections.emptyList();
}
// TODO: support other criterion
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list