[java-plugin-shibd] branch main updated: Extend logging.

Codeberg noreply at shibboleth.net
Tue Aug 11 14:57:10 UTC 2026


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

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

View the commit online:
https://codeberg.org/Shibboleth/java-plugin-shibd/commit/e1b3b438254664245a6608d37666c7fb78cbbc46

The following commit(s) were added to refs/heads/main by this push:
     new e1b3b43  Extend logging.
e1b3b43 is described below

commit e1b3b438254664245a6608d37666c7fb78cbbc46
Author: Scott Cantor <scott at restingparrotsoftware.com>
AuthorDate: Tue Aug 11 10:57:00 2026 -0400

    Extend logging.
---
 .../java/net/shibboleth/sp/impl/ProtocolSupportServiceManager.java  | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/sp-server-impl/src/main/java/net/shibboleth/sp/impl/ProtocolSupportServiceManager.java b/sp-server-impl/src/main/java/net/shibboleth/sp/impl/ProtocolSupportServiceManager.java
index a36fa97..f3a7dbc 100644
--- a/sp-server-impl/src/main/java/net/shibboleth/sp/impl/ProtocolSupportServiceManager.java
+++ b/sp-server-impl/src/main/java/net/shibboleth/sp/impl/ProtocolSupportServiceManager.java
@@ -52,8 +52,10 @@ public class ProtocolSupportServiceManager extends IdentifiedComponentManager<Pr
         
         for (final ProtocolSupportService service : getComponents()) {
             assert service != null;
-            log.info("Installed SP Hub support for protocol {}: initiators ({}), consumers ({})", service.getId(),
-                    service.getSessionInitiators(), service.getTokenConsumers());
+            log.info("Installed SP Hub support for protocol {}: initiators ({}), consumers ({}), "
+                        + "logout-initiators ({}), logout-consumers ({})", service.getId(),
+                        service.getSessionInitiators(), service.getTokenConsumers(),
+                        service.getLogoutInitiators(), service.getLogoutConsumers());
         }
     }
 

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


More information about the commits mailing list