Author: scantor
Date: Mon Apr 4 14:36:08 2016
New Revision: 8194
URL: http://svn.shibboleth.net/view/java-identity-provider?rev=8194&view=rev
Log:
Lower logging level when flow choices are exhausted.
Modified:
trunk/idp-authn-impl/src/main/java/net/shibboleth/idp/authn/impl/SelectAuthenticationFlow.java
Modified: trunk/idp-authn-impl/src/main/java/net/shibboleth/idp/authn/impl/SelectAuthenticationFlow.java
URL: http://svn.shibboleth.net/view/java-identity-provider/trunk/idp-authn-impl/src/main/java/net/shibboleth/idp/authn/impl/SelectAuthenticationFlow.java?rev=8194&r1=8193&r2=8194&view=diff
==============================================================================
--- trunk/idp-authn-impl/src/main/java/net/shibboleth/idp/authn/impl/SelectAuthenticationFlow.java (original)
+++ trunk/idp-authn-impl/src/main/java/net/shibboleth/idp/authn/impl/SelectAuthenticationFlow.java Mon Apr 4 14:36:08 2016
@@ -263,7 +263,7 @@
final AuthenticationFlowDescriptor flow =
getUnattemptedInactiveFlow(profileRequestContext, authenticationContext);
if (flow == null) {
- log.error("{} No potential flows left to choose from, authentication will fail", getLogPrefix());
+ log.info("{} No potential flows left to choose from, authentication failed", getLogPrefix());
ActionSupport.buildEvent(profileRequestContext,
authenticationContext.isPassive() ? AuthnEventIds.NO_PASSIVE : AuthnEventIds.NO_POTENTIAL_FLOW);
return;
@@ -286,7 +286,7 @@
final AuthenticationFlowDescriptor flow =
getUnattemptedInactiveFlow(profileRequestContext, authenticationContext);
if (flow == null) {
- log.error("{} No potential flows left to choose from, authentication will fail", getLogPrefix());
+ log.info("{} No potential flows left to choose from, authentication failed", getLogPrefix());
ActionSupport.buildEvent(profileRequestContext,
authenticationContext.isPassive() ? AuthnEventIds.NO_PASSIVE : AuthnEventIds.NO_POTENTIAL_FLOW);
return;