[java-identity-provider] branch main updated: Adjust a log level.

Scott Cantor cantor.2 at osu.edu
Wed Feb 17 14:07:18 UTC 2021


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

scantor pushed a commit to branch main
in repository java-identity-provider.

View the commit online:
http://git.shibboleth.net/view/?p=java-identity-provider.git;a=commit;h=efeea469d0f99fbea840968c6fe575ee199eb144

The following commit(s) were added to refs/heads/main by this push:
       new  efeea469d Adjust a log level.
efeea469d is described below

commit efeea469d0f99fbea840968c6fe575ee199eb144
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Wed Feb 17 09:07:15 2021 -0500

    Adjust a log level.
---
 .../idp/attribute/resolver/impl/AttributeResolverImpl.java          | 6 +-----
 1 file changed, 1 insertion(+), 5 deletions(-)

diff --git a/idp-attribute-resolver-impl/src/main/java/net/shibboleth/idp/attribute/resolver/impl/AttributeResolverImpl.java b/idp-attribute-resolver-impl/src/main/java/net/shibboleth/idp/attribute/resolver/impl/AttributeResolverImpl.java
index ff35985c9..487e9c106 100644
--- a/idp-attribute-resolver-impl/src/main/java/net/shibboleth/idp/attribute/resolver/impl/AttributeResolverImpl.java
+++ b/idp-attribute-resolver-impl/src/main/java/net/shibboleth/idp/attribute/resolver/impl/AttributeResolverImpl.java
@@ -304,7 +304,6 @@ public class AttributeResolverImpl extends AbstractServiceableComponent<Attribut
      * 
      * @throws ResolutionException if unable to resolve the requested attribute definition
      */
-    // CheckStyle: ReturnCount OFF
     protected void resolveAttributeDefinition(@Nonnull final String attributeId,
             @Nonnull final AttributeResolutionContext resolutionContext) throws ResolutionException {
         Constraint.isNotNull(attributeId, "Attribute ID can not be null");
@@ -339,7 +338,6 @@ public class AttributeResolverImpl extends AbstractServiceableComponent<Attribut
 
         workContext.recordAttributeDefinitionResolution(definition, resolvedAttribute);
     }
-    // CheckStyle: ReturnCount ON
 
     /**
      * Resolve the {@link DataConnector} which has the specified ID.
@@ -351,7 +349,6 @@ public class AttributeResolverImpl extends AbstractServiceableComponent<Attribut
      * 
      * @throws ResolutionException if unable to resolve the requested connector
      */
-    // CheckStyle: ReturnCount OFF
     protected void resolveDataConnector(@Nonnull final String connectorId,
             @Nonnull final AttributeResolutionContext resolutionContext) throws ResolutionException {
         Constraint.isNotNull(connectorId, "Data connector ID can not be null");
@@ -387,7 +384,7 @@ public class AttributeResolverImpl extends AbstractServiceableComponent<Attribut
             if (connector.isPropagateResolutionExceptions()) {
                 throw new ResolutionException("Previous resolve failed");
             }
-            log.error("Data connector '{}' previously failed but was configured not to propagate");
+            log.warn("Data connector '{}' previously failed but was configured not to propagate");
             return;
         }
 
@@ -418,7 +415,6 @@ public class AttributeResolverImpl extends AbstractServiceableComponent<Attribut
         }
         workContext.recordDataConnectorResolution(connector, resolvedAttributes);
     }
-    // CheckStyle: ReturnCount ON
 
     /**
      * Resolves all the dependencies for a given plugin.

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


More information about the commits mailing list