[java-identity-provider] branch main updated: Raise logging level on encoding exceptions.

Scott Cantor cantor.2 at osu.edu
Tue Dec 12 13:58:47 UTC 2023


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=0fe0de3348c55c2ba08fa03dcaaee36aef6ccf89

The following commit(s) were added to refs/heads/main by this push:
     new 0fe0de334 Raise logging level on encoding exceptions.
0fe0de334 is described below

commit 0fe0de3348c55c2ba08fa03dcaaee36aef6ccf89
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