[java-oidc-common] branch dev/JCOMOIDC-62 updated: Change log level to warn if no client_secret credential

Phil Smart philip.smart at jisc.ac.uk
Fri Jan 27 11:33:54 UTC 2023


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

philsmart pushed a commit to branch dev/JCOMOIDC-62
in repository java-oidc-common.

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

The following commit(s) were added to refs/heads/dev/JCOMOIDC-62 by this push:
     new 90334cb  Change log level to warn if no client_secret credential
90334cb is described below

commit 90334cbc368b8d28314517a6f25ce3e962432f31
Author: Phil Smart <philip.smart at jisc.ac.uk>
AuthorDate: Fri Jan 27 11:33:51 2023 +0000

    Change log level to warn if no client_secret credential
---
 .../security/credential/impl/ClientInformationCredentialResolver.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/oidc-common-crypto-impl/src/main/java/net/shibboleth/oidc/security/credential/impl/ClientInformationCredentialResolver.java b/oidc-common-crypto-impl/src/main/java/net/shibboleth/oidc/security/credential/impl/ClientInformationCredentialResolver.java
index f177469..ba86302 100644
--- a/oidc-common-crypto-impl/src/main/java/net/shibboleth/oidc/security/credential/impl/ClientInformationCredentialResolver.java
+++ b/oidc-common-crypto-impl/src/main/java/net/shibboleth/oidc/security/credential/impl/ClientInformationCredentialResolver.java
@@ -151,7 +151,7 @@ public class ClientInformationCredentialResolver extends BasicJOSEObjectCredenti
                 final Credential derivedCredential = deriveClientSecretCredential(secretCred, criteriaSet);
                 credentials.add(derivedCredential);
             } catch (final ResolverException e) {
-                log.trace("Unable to derive a client_secret based credential", e);
+                log.warn("Unable to derive a client_secret based credential", e);
             }            
         }            
 

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


More information about the commits mailing list