[java-identity-provider COMMIT] in /trunk/idp-attribute-filter-api/src/main/java/net/shibboleth/idp/attribute/filter:...

noreply at shibboleth.net noreply at shibboleth.net
Fri Dec 19 21:56:36 EST 2014


Author: scantor
Date: Fri Dec 19 21:56:36 2014
New Revision: 7207

URL: http://svn.shibboleth.net/view/java-identity-provider?rev=7207&view=rev
Log:
Lower log level.

Modified:
    trunk/idp-attribute-filter-api/src/main/java/net/shibboleth/idp/attribute/filter/PolicyFromMatcher.java
    trunk/idp-attribute-filter-api/src/main/java/net/shibboleth/idp/attribute/filter/PolicyFromMatcherId.java

Modified: trunk/idp-attribute-filter-api/src/main/java/net/shibboleth/idp/attribute/filter/PolicyFromMatcher.java
URL: http://svn.shibboleth.net/view/java-identity-provider/trunk/idp-attribute-filter-api/src/main/java/net/shibboleth/idp/attribute/filter/PolicyFromMatcher.java?rev=7207&r1=7206&r2=7207&view=diff
==============================================================================
--- trunk/idp-attribute-filter-api/src/main/java/net/shibboleth/idp/attribute/filter/PolicyFromMatcher.java (original)
+++ trunk/idp-attribute-filter-api/src/main/java/net/shibboleth/idp/attribute/filter/PolicyFromMatcher.java Fri Dec 19 21:56:36 2014
@@ -65,7 +65,7 @@
     @Override
     public Tristate matches(@Nonnull AttributeFilterContext context) {
         
-        log.info("{} Applying matcher supplied as policy to all values of all attributes", getLogPrefix());
+        log.debug("{} Applying matcher supplied as policy to all values of all attributes", getLogPrefix());
 
         for (IdPAttribute attribute : context.getPrefilteredIdPAttributes().values()) {
             Set<IdPAttributeValue<?>> result = matcher.getMatchingValues(attribute, context);

Modified: trunk/idp-attribute-filter-api/src/main/java/net/shibboleth/idp/attribute/filter/PolicyFromMatcherId.java
URL: http://svn.shibboleth.net/view/java-identity-provider/trunk/idp-attribute-filter-api/src/main/java/net/shibboleth/idp/attribute/filter/PolicyFromMatcherId.java?rev=7207&r1=7206&r2=7207&view=diff
==============================================================================
--- trunk/idp-attribute-filter-api/src/main/java/net/shibboleth/idp/attribute/filter/PolicyFromMatcherId.java (original)
+++ trunk/idp-attribute-filter-api/src/main/java/net/shibboleth/idp/attribute/filter/PolicyFromMatcherId.java Fri Dec 19 21:56:36 2014
@@ -80,7 +80,7 @@
     @Override
     @Nonnull public Tristate matches(@Nonnull AttributeFilterContext context) {
         
-        log.info("{} Applying matcher supplied as policy to all values of attribute {}", getLogPrefix(), attributeId);
+        log.debug("{} Applying matcher supplied as policy to all values of attribute {}", getLogPrefix(), attributeId);
 
         final IdPAttribute attribute = context.getPrefilteredIdPAttributes().get(attributeId);
         



More information about the commits mailing list