[java-identity-provider] 02/28: Shorten logging messages.
Scott Cantor
cantor.2 at osu.edu
Wed Jan 31 14:51:48 UTC 2024
This is an automated email from the git hooks/post-receive script.
scantor pushed a commit to branch dev/thymeleaf
in repository java-identity-provider.
View the commit online:
http://git.shibboleth.net/view/?p=java-identity-provider.git;a=commit;h=75de580ed83ef230d8574c2c10d07a76753e72d0
commit 75de580ed83ef230d8574c2c10d07a76753e72d0
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Tue Dec 12 09:05:29 2023 -0500
Shorten logging messages.
---
.../idp/saml/saml1/profile/impl/AddAttributeStatementToAssertion.java | 4 ++--
.../idp/saml/saml2/profile/impl/AddAttributeStatementToAssertion.java | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/saml1/profile/impl/AddAttributeStatementToAssertion.java b/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/saml1/profile/impl/AddAttributeStatementToAssertion.java
index 8012f7ecc..d102745ae 100644
--- a/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/saml1/profile/impl/AddAttributeStatementToAssertion.java
+++ b/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/saml1/profile/impl/AddAttributeStatementToAssertion.java
@@ -213,8 +213,8 @@ public class AddAttributeStatementToAssertion extends BaseAddAttributeStatementT
// Uses the new registry.
if (super.encodeAttribute(registry, profileRequestContext, attribute, Attribute.class, results) == 0) {
- log.debug("{} Attribute {} did not have SAML 1 Attribute transcoder instructions associated, nothing to do",
- getLogPrefix(), attribute.getId());
+ log.debug("{} Attribute {} did not have usable SAML 1 Attribute transcoder rules", getLogPrefix(),
+ attribute.getId());
}
}
diff --git a/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/saml2/profile/impl/AddAttributeStatementToAssertion.java b/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/saml2/profile/impl/AddAttributeStatementToAssertion.java
index 3032d6744..0bbd06f3f 100644
--- a/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/saml2/profile/impl/AddAttributeStatementToAssertion.java
+++ b/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/saml2/profile/impl/AddAttributeStatementToAssertion.java
@@ -216,8 +216,8 @@ public class AddAttributeStatementToAssertion extends BaseAddAttributeStatementT
// Uses the new registry.
if (super.encodeAttribute(registry, profileRequestContext, attribute, Attribute.class, results) == 0) {
- log.debug("{} Attribute {} did not have SAML 2 Attribute transcoder instructions associated, nothing to do",
- getLogPrefix(), attribute.getId());
+ log.debug("{} Attribute {} did not have usable SAML 2 Attribute transcoder rules", getLogPrefix(),
+ attribute.getId());
}
}
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list