[java-identity-provider] branch main updated: Reduce logging clutter.
Scott Cantor
cantor.2 at osu.edu
Tue Dec 21 17:04:16 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=86b222b88b04cb7f9dfede0d071484180913a1b3
The following commit(s) were added to refs/heads/main by this push:
new 86b222b88 Reduce logging clutter.
86b222b88 is described below
commit 86b222b88b04cb7f9dfede0d071484180913a1b3
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Tue Dec 21 12:04:12 2021 -0500
Reduce logging clutter.
---
.../java/net/shibboleth/idp/authn/impl/FilterFlowsByForcedAuthn.java | 3 ++-
.../net/shibboleth/idp/authn/impl/FilterFlowsByNonBrowserSupport.java | 3 ++-
2 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/idp-authn-impl/src/main/java/net/shibboleth/idp/authn/impl/FilterFlowsByForcedAuthn.java b/idp-authn-impl/src/main/java/net/shibboleth/idp/authn/impl/FilterFlowsByForcedAuthn.java
index d68caba70..86d9e8d98 100644
--- a/idp-authn-impl/src/main/java/net/shibboleth/idp/authn/impl/FilterFlowsByForcedAuthn.java
+++ b/idp-authn-impl/src/main/java/net/shibboleth/idp/authn/impl/FilterFlowsByForcedAuthn.java
@@ -85,7 +85,8 @@ public class FilterFlowsByForcedAuthn extends AbstractAuthenticationAction {
if (potentialFlows.size() == 0) {
log.info("{} No potential authentication flows remain after filtering", getLogPrefix());
} else {
- log.debug("{} Potential authentication flows left after filtering: {}", getLogPrefix(), potentialFlows);
+ log.debug("{} Potential authentication flows left after filtering: {}", getLogPrefix(),
+ potentialFlows.keySet());
}
}
diff --git a/idp-authn-impl/src/main/java/net/shibboleth/idp/authn/impl/FilterFlowsByNonBrowserSupport.java b/idp-authn-impl/src/main/java/net/shibboleth/idp/authn/impl/FilterFlowsByNonBrowserSupport.java
index 86311e500..ff44c8fde 100644
--- a/idp-authn-impl/src/main/java/net/shibboleth/idp/authn/impl/FilterFlowsByNonBrowserSupport.java
+++ b/idp-authn-impl/src/main/java/net/shibboleth/idp/authn/impl/FilterFlowsByNonBrowserSupport.java
@@ -85,7 +85,8 @@ public class FilterFlowsByNonBrowserSupport extends AbstractAuthenticationAction
if (potentialFlows.size() == 0) {
log.info("{} No potential authentication flows remain after filtering", getLogPrefix());
} else {
- log.debug("{} Potential authentication flows left after filtering: {}", getLogPrefix(), potentialFlows);
+ log.debug("{} Potential authentication flows left after filtering: {}", getLogPrefix(),
+ potentialFlows.keySet());
}
}
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list