[java-idp-oidc] branch main updated: Fix typos in the debug log messages

Henri Mikkonen henri.mikkonen at iki.fi
Thu Oct 9 09:38:52 UTC 2025


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

hjmikkon pushed a commit to branch main
in repository java-idp-oidc.

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

The following commit(s) were added to refs/heads/main by this push:
     new c97c501a Fix typos in the debug log messages
c97c501a is described below

commit c97c501aacc4f5421c5b342d522428f83645d457
Author: Henri Mikkonen <henri.mikkonen at iki.fi>
AuthorDate: Thu Oct 9 12:37:40 2025 +0300

    Fix typos in the debug log messages
---
 .../oidc/op/metadata/impl/SelectMetadataLookupExtensionFlow.java      | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/idp-oidc-extension-impl/src/main/java/net/shibboleth/idp/plugin/oidc/op/metadata/impl/SelectMetadataLookupExtensionFlow.java b/idp-oidc-extension-impl/src/main/java/net/shibboleth/idp/plugin/oidc/op/metadata/impl/SelectMetadataLookupExtensionFlow.java
index 2a5ff735..433cc4a1 100644
--- a/idp-oidc-extension-impl/src/main/java/net/shibboleth/idp/plugin/oidc/op/metadata/impl/SelectMetadataLookupExtensionFlow.java
+++ b/idp-oidc-extension-impl/src/main/java/net/shibboleth/idp/plugin/oidc/op/metadata/impl/SelectMetadataLookupExtensionFlow.java
@@ -176,7 +176,7 @@ public class SelectMetadataLookupExtensionFlow extends AbstractProfileAction {
         if (metadataLookupExtensionContext.getProfileId() == null) {
             final String profileId = profileIDLookupStrategy.apply(profileRequestContext);
             if (profileId == null) {
-                log.debug("(} Could not resolve profile ID to be used", getLogPrefix());
+                log.debug("{} Could not resolve profile ID to be used", getLogPrefix());
             } else {
                 metadataLookupExtensionContext.setProfileId(profileId);
             }
@@ -184,7 +184,7 @@ public class SelectMetadataLookupExtensionFlow extends AbstractProfileAction {
         for (final MetadataLookupExtensionFlowDescriptor flow : availableFlows) {
             log.trace("{} Checking flow {}", getLogPrefix(), flow.getId());
             if (metadataLookupExtensionContext.getAttemptedFlows().contains(flow)) {
-                log.debug("{} Flow (} has already been attempted", getLogPrefix(), flow.getId());
+                log.debug("{} Flow {} has already been attempted", getLogPrefix(), flow.getId());
             } else {
                 log.debug("{} Selecting flow {}", getLogPrefix(), flow.getId());
                 metadataLookupExtensionContext.getAttemptedFlows().add(flow);

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


More information about the commits mailing list