[java-identity-provider] branch main updated: Fix logging glitch.
Scott Cantor
cantor.2 at osu.edu
Tue Apr 5 20:20:36 UTC 2022
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=37811cca980f8aa81a41db5393f914c3aac0fde6
The following commit(s) were added to refs/heads/main by this push:
new 37811cca9 Fix logging glitch.
37811cca9 is described below
commit 37811cca980f8aa81a41db5393f914c3aac0fde6
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Tue Apr 5 16:20:29 2022 -0400
Fix logging glitch.
---
.../attribute/transcoding/impl/AttributeTranscoderRegistryImpl.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/idp-attribute-impl/src/main/java/net/shibboleth/idp/attribute/transcoding/impl/AttributeTranscoderRegistryImpl.java b/idp-attribute-impl/src/main/java/net/shibboleth/idp/attribute/transcoding/impl/AttributeTranscoderRegistryImpl.java
index d29b924e2..bd42c2a89 100644
--- a/idp-attribute-impl/src/main/java/net/shibboleth/idp/attribute/transcoding/impl/AttributeTranscoderRegistryImpl.java
+++ b/idp-attribute-impl/src/main/java/net/shibboleth/idp/attribute/transcoding/impl/AttributeTranscoderRegistryImpl.java
@@ -291,8 +291,8 @@ public class AttributeTranscoderRegistryImpl extends AbstractServiceableComponen
return;
}
- log.debug("Attribute mapping: {} {}-{} {} via {}", id, targetName,
- decoder ? "<" : "", encoder ? ">" : "", transcoder.getClass().getSimpleName());
+ log.debug("Attribute mapping: {} {}-{} {} via {}", id, decoder ? "<" : "", encoder ? ">" : "", targetName,
+ transcoder.getClass().getSimpleName());
// Install mapping back to IdPAttribute's trimmed name.
copy.getMap().put(PROP_ID, id);
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list