[java-identity-provider COMMIT] /trunk/idp-authn-impl/src/main/java/net/shibboleth/idp/authn/impl/FilterFlowsByAttrib...

noreply at shibboleth.net noreply at shibboleth.net
Sun Aug 16 08:47:20 EDT 2015


Author: rdw
Date: Sun Aug 16 08:47:20 2015
New Revision: 7680

URL: http://svn.shibboleth.net/view/java-identity-provider?rev=7680&view=rev
Log:
IDP-726 Log authnFlowByAttribute Filtering

https://issues.shibboleth.net/jira/browse/IDP-726

Bump logging up to Debug

Modified:
    trunk/idp-authn-impl/src/main/java/net/shibboleth/idp/authn/impl/FilterFlowsByAttribute.java

Modified: trunk/idp-authn-impl/src/main/java/net/shibboleth/idp/authn/impl/FilterFlowsByAttribute.java
URL: http://svn.shibboleth.net/view/java-identity-provider/trunk/idp-authn-impl/src/main/java/net/shibboleth/idp/authn/impl/FilterFlowsByAttribute.java?rev=7680&r1=7679&r2=7680&view=diff
==============================================================================
--- trunk/idp-authn-impl/src/main/java/net/shibboleth/idp/authn/impl/FilterFlowsByAttribute.java	(original)
+++ trunk/idp-authn-impl/src/main/java/net/shibboleth/idp/authn/impl/FilterFlowsByAttribute.java	Sun Aug 16 08:47:20 2015
@@ -160,10 +160,10 @@
      */
     @Nullable private String getMatch(@Nonnull final AuthenticationFlowDescriptor flow) {
 
-        log.trace("{} Looking for match for flow {} against values for attribute {}", getLogPrefix(), flow.getId(),
+        log.debug("{} Looking for match for flow {} against values for attribute {}", getLogPrefix(), flow.getId(),
                 attribute.getId());
         for (final Principal p : flow.getSupportedPrincipals()) {
-            log.trace("{} Comparing principal {} against attribute values {}", getLogPrefix(), p.getName(),
+            log.debug("{} Comparing principal {} against attribute values {}", getLogPrefix(), p.getName(),
                     attribute.getValues());
             for (final IdPAttributeValue val : attribute.getValues()) {
                 if (val instanceof StringAttributeValue && Objects.equals(val.getValue(), p.getName())) {



More information about the commits mailing list