[java-identity-provider] 01/28: Raise logging level on encoding exceptions.
Scott Cantor
cantor.2 at osu.edu
Wed Jan 31 14:51:47 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=3ba2d4b11f40952fda7704e603137ea88e413037
commit 3ba2d4b11f40952fda7704e603137ea88e413037
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Tue Dec 12 08:58:43 2023 -0500
Raise logging level on encoding exceptions.
---
.../idp/saml/profile/impl/BaseAddAttributeStatementToAssertion.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/profile/impl/BaseAddAttributeStatementToAssertion.java b/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/profile/impl/BaseAddAttributeStatementToAssertion.java
index 7061ce2c3..35a94fc03 100644
--- a/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/profile/impl/BaseAddAttributeStatementToAssertion.java
+++ b/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/profile/impl/BaseAddAttributeStatementToAssertion.java
@@ -325,7 +325,7 @@ public abstract class BaseAddAttributeStatementToAssertion<T extends SAMLObject>
}
} catch (final AttributeEncodingException e) {
if (isIgnoringUnencodableAttributes()) {
- log.debug("{} Unable to encode attribute {}", getLogPrefix(), attribute.getId(), e);
+ log.info("{} Unable to encode attribute {}", getLogPrefix(), attribute.getId(), e);
} else {
throw e;
}
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list