[java-identity-provider] 02/04: IDP-1593 Fix logging in previous

Rod Widdowson rdw at steadingsoftware.com
Sun Apr 19 10:54:22 EDT 2020


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

rdw pushed a commit to branch master
in repository java-identity-provider.

View the commit online:
http://git.shibboleth.net/view/?p=java-identity-provider.git;a=commit;h=9539d80818989a337f5fd12e8dc02b344ce98b09

commit 9539d80818989a337f5fd12e8dc02b344ce98b09
Author: Rod Widdowson <rdw at steadingsoftware.com>
AuthorDate: Sun Apr 19 14:52:26 2020 +0100

    IDP-1593 Fix logging in previous
    
    https://issues.shibboleth.net/jira/browse/IDP-1593
---
 .../src/main/java/net/shibboleth/idp/saml/metadata/ACSUIInfo.java     | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/idp-saml-api/src/main/java/net/shibboleth/idp/saml/metadata/ACSUIInfo.java b/idp-saml-api/src/main/java/net/shibboleth/idp/saml/metadata/ACSUIInfo.java
index 35e3bdc..d97d0c0 100644
--- a/idp-saml-api/src/main/java/net/shibboleth/idp/saml/metadata/ACSUIInfo.java
+++ b/idp-saml-api/src/main/java/net/shibboleth/idp/saml/metadata/ACSUIInfo.java
@@ -48,12 +48,12 @@ public class ACSUIInfo {
     private final Predicate<LocalizedName> nullLanguageString = new Predicate<>() {
         public boolean test(final LocalizedName u) {
             if (u.getXMLLang() == null) {
-                LOG.warn("String with value {} in AssertionConsumerService" +
+                LOG.warn("String with value {} in <AttributeConsumingService/>" +
                " has no language associated, ignoring", u.getValue());
                 return false;
             } 
             if (u.getValue() == null) {
-                LOG.warn("Ignoring empty string in AssertionConsumerService", u.getValue());
+                LOG.warn("Ignoring empty string in <AttributeConsumingService/>", u.getValue());
                 return false;
             }
             return true;

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


More information about the commits mailing list