[java-idp-plugin-oidc-rp] branch main updated: Change INFO level logging to DEBUG

Phil Smart philip.smart at jisc.ac.uk
Tue May 2 17:46:54 UTC 2023


This is an automated email from the git hooks/post-receive script.

philsmart pushed a commit to branch main
in repository java-idp-plugin-oidc-rp.

View the commit online:
http://git.shibboleth.net/view/?p=java-idp-plugin-oidc-rp.git;a=commit;h=56af61dce61a8f86c78e0ecc83d85960c44ad3d6

The following commit(s) were added to refs/heads/main by this push:
     new 56af61d  Change INFO level logging to DEBUG
56af61d is described below

commit 56af61dce61a8f86c78e0ecc83d85960c44ad3d6
Author: Phil Smart <philip.smart at jisc.ac.uk>
AuthorDate: Tue May 2 18:46:52 2023 +0100

    Change INFO level logging to DEBUG
    
            - Avoid some log clutter on INFO
---
 .../idp/plugin/authn/oidc/rp/impl/ValidateOIDCAuthentication.java     | 2 +-
 .../oidc/rp/metadata/impl/OIDCProviderMetadataLookupHandler.java      | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/idp-oidc-rp-impl/src/main/java/net/shibboleth/idp/plugin/authn/oidc/rp/impl/ValidateOIDCAuthentication.java b/idp-oidc-rp-impl/src/main/java/net/shibboleth/idp/plugin/authn/oidc/rp/impl/ValidateOIDCAuthentication.java
index b42b2cd..02733d0 100644
--- a/idp-oidc-rp-impl/src/main/java/net/shibboleth/idp/plugin/authn/oidc/rp/impl/ValidateOIDCAuthentication.java
+++ b/idp-oidc-rp-impl/src/main/java/net/shibboleth/idp/plugin/authn/oidc/rp/impl/ValidateOIDCAuthentication.java
@@ -551,7 +551,7 @@ public class ValidateOIDCAuthentication extends AbstractValidationAction {
         
         final Collection<TranscodingRule> transcodingRules = registry.getTranscodingRules(input);
         if (transcodingRules.isEmpty()) {
-            log.info("{} No transcoding rule for Attribute '{}'", getLogPrefix(), input);
+            log.debug("{} No transcoding rule for Attribute '{}'", getLogPrefix(), input);
             return;
         }
         
diff --git a/idp-oidc-rp-impl/src/main/java/net/shibboleth/idp/plugin/authn/oidc/rp/metadata/impl/OIDCProviderMetadataLookupHandler.java b/idp-oidc-rp-impl/src/main/java/net/shibboleth/idp/plugin/authn/oidc/rp/metadata/impl/OIDCProviderMetadataLookupHandler.java
index 11fe7d1..20e0995 100644
--- a/idp-oidc-rp-impl/src/main/java/net/shibboleth/idp/plugin/authn/oidc/rp/metadata/impl/OIDCProviderMetadataLookupHandler.java
+++ b/idp-oidc-rp-impl/src/main/java/net/shibboleth/idp/plugin/authn/oidc/rp/metadata/impl/OIDCProviderMetadataLookupHandler.java
@@ -133,7 +133,7 @@ public class OIDCProviderMetadataLookupHandler extends AbstractMessageHandler {
         final AbstractOIDCEntityContext entityCtx = contextClassLookupStrategy.apply(messageContext);
 
         if (entityCtx == null || entityCtx.getIdentifier() == null) {
-            log.info("{} OIDC entity context class '{}' missing or did not contain an issuer identifier", 
+            log.debug("{} OIDC entity context class '{}' missing or did not contain an issuer identifier", 
                     getLogPrefix(), AbstractOIDCEntityContext.class);
             return;
         }
@@ -141,7 +141,7 @@ public class OIDCProviderMetadataLookupHandler extends AbstractMessageHandler {
         final OIDCProviderMetadataContext existingMetadataCtx = resolveExisting(messageContext,
                 entityCtx.getIdentifier());
         if (existingMetadataCtx != null) {
-            log.info("{} Resolved existing provider metadata context, removing existing "
+            log.debug("{} Resolved existing provider metadata context, removing existing "
                     + "and re-using it", getLogPrefix());
             entityCtx.removeSubcontext(OIDCProviderMetadataContext.class);
             entityCtx.addSubcontext(existingMetadataCtx);

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the commits mailing list