[java-identity-provider] branch main updated: Log full attribute designation.
Scott Cantor
cantor.2 at osu.edu
Wed Feb 23 18:51:43 UTC 2022
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=4d810b83e931237181bb5bd2fb5a61360cebe720
The following commit(s) were added to refs/heads/main by this push:
new 4d810b83e Log full attribute designation.
4d810b83e is described below
commit 4d810b83e931237181bb5bd2fb5a61360cebe720
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Wed Feb 23 13:51:40 2022 -0500
Log full attribute designation.
---
.../idp/saml/saml2/profile/impl/ValidateSAMLAuthentication.java | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/saml2/profile/impl/ValidateSAMLAuthentication.java b/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/saml2/profile/impl/ValidateSAMLAuthentication.java
index 666cbb740..ca7512b4b 100644
--- a/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/saml2/profile/impl/ValidateSAMLAuthentication.java
+++ b/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/saml2/profile/impl/ValidateSAMLAuthentication.java
@@ -469,7 +469,8 @@ public class ValidateSAMLAuthentication extends AbstractValidationAction {
final Collection<TranscodingRule> transcodingRules = registry.getTranscodingRules(input);
if (transcodingRules.isEmpty()) {
- log.info("{} No transcoding rule for Attribute '{}'", getLogPrefix(), input.getName());
+ log.info("{} No transcoding rule for Attribute (Name '{}', NameFormat: '{}')", getLogPrefix(),
+ input.getName(), input.getNameFormat() != null ? input.getNameFormat() : Attribute.UNSPECIFIED);
return;
}
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list