[java-opensaml] branch main updated: Lower log level for case that is not really an error or warn.

Codeberg noreply at shibboleth.net
Sun Dec 14 23:47:05 UTC 2025


This is an automated email from the git hooks/post-receive script.

codeberg pushed a commit to branch main
in repository java-opensaml.

View the commit online:
https://codeberg.org/Shibboleth/java-opensaml/commit/45a9f117fbb0169b379b285262d50ab60b4cd377

The following commit(s) were added to refs/heads/main by this push:
     new 45a9f117f Lower log level for case that is not really an error or warn.
45a9f117f is described below

commit 45a9f117fbb0169b379b285262d50ab60b4cd377
Author: Brent Putman <putmanb at georgetown.edu>
AuthorDate: Sun Dec 14 18:46:33 2025 -0500

    Lower log level for case that is not really an error or warn.
---
 .../messaging/impl/DefaultAssertionValidationContextBuilder.java      | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/opensaml-saml-impl/src/main/java/org/opensaml/saml/saml2/assertion/messaging/impl/DefaultAssertionValidationContextBuilder.java b/opensaml-saml-impl/src/main/java/org/opensaml/saml/saml2/assertion/messaging/impl/DefaultAssertionValidationContextBuilder.java
index a7c55f895..af1fc5b16 100644
--- a/opensaml-saml-impl/src/main/java/org/opensaml/saml/saml2/assertion/messaging/impl/DefaultAssertionValidationContextBuilder.java
+++ b/opensaml-saml-impl/src/main/java/org/opensaml/saml/saml2/assertion/messaging/impl/DefaultAssertionValidationContextBuilder.java
@@ -1097,10 +1097,10 @@ public class DefaultAssertionValidationContextBuilder
                 log.debug("Resolved valid subject confirmation InetAddress set: {}", validAddresses);
                 return validAddresses;
             }
-            log.warn("Could not determine attester IP address. Validation of Assertion may or may not succeed");
+            log.debug("Could not determine attester IP address. Validation of Assertion may or may not succeed");
             return CollectionSupport.emptySet();
         } catch (final UnknownHostException e) {
-            log.warn("Processing of attester IP address failed. Validation of Assertion may or may not succeed", e);
+            log.debug("Processing of attester IP address failed. Validation of Assertion may or may not succeed", e);
             return CollectionSupport.emptySet();
         }
     }

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the commits mailing list