[java-oidc-common] branch main updated: Add string value logging when no scope delimiter detected

Phil Smart philip.smart at jisc.ac.uk
Tue Jan 9 11:38:10 UTC 2024


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

philsmart pushed a commit to branch main
in repository java-oidc-common.

View the commit online:
http://git.shibboleth.net/view/?p=java-oidc-common.git;a=commit;h=2989d5905ae97e085ea9b761eea62b819ab4533e

The following commit(s) were added to refs/heads/main by this push:
     new 2989d59  Add string value logging when no scope delimiter detected
2989d59 is described below

commit 2989d5905ae97e085ea9b761eea62b819ab4533e
Author: Phil Smart <philip.smart at jisc.ac.uk>
AuthorDate: Tue Jan 9 11:38:07 2024 +0000

    Add string value logging when no scope delimiter detected
---
 .../attribute/transcoding/impl/OIDCScopedStringAttributeTranscoder.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/oidc-common-attribute-impl/src/main/java/net/shibboleth/oidc/attribute/transcoding/impl/OIDCScopedStringAttributeTranscoder.java b/oidc-common-attribute-impl/src/main/java/net/shibboleth/oidc/attribute/transcoding/impl/OIDCScopedStringAttributeTranscoder.java
index e926537..e9705d0 100644
--- a/oidc-common-attribute-impl/src/main/java/net/shibboleth/oidc/attribute/transcoding/impl/OIDCScopedStringAttributeTranscoder.java
+++ b/oidc-common-attribute-impl/src/main/java/net/shibboleth/oidc/attribute/transcoding/impl/OIDCScopedStringAttributeTranscoder.java
@@ -112,7 +112,7 @@ public class OIDCScopedStringAttributeTranscoder extends AbstractOIDCAttributeTr
             assert scopeDelimiter != null;
             final int offset = stringValue.indexOf(scopeDelimiter);
             if (offset < 0) {
-                log.warn("Ignoring value with no scope delimiter ({})", scopeDelimiter);
+                log.warn("Ignoring value '{}' with no scope delimiter ({})", stringValue, scopeDelimiter);
                 return CollectionSupport.emptyList();
             }
             return CollectionSupport.listOf(ScopedStringAttributeValue.valueOf(stringValue.substring(0, offset), 

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


More information about the commits mailing list