[java-shib-shared] branch main updated: Turn down logging on fall through to our home grown engines

Rod Widdowson rdw at steadingsoftware.com
Mon Jan 29 15:35:03 UTC 2024


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

rdw pushed a commit to branch main
in repository java-shib-shared.

View the commit online:
http://git.shibboleth.net/view/?p=java-shib-shared.git;a=commit;h=3c4fc074cd4f5240b4c044b1576ea51d16ad47e9

The following commit(s) were added to refs/heads/main by this push:
     new 3c4fc074 Turn down logging on fall through to our home grown engines
3c4fc074 is described below

commit 3c4fc074cd4f5240b4c044b1576ea51d16ad47e9
Author: Rod Widdowson <rdw at steadingsoftware.com>
AuthorDate: Mon Jan 29 15:34:56 2024 +0000

    Turn down logging on fall through to our home grown engines
---
 .../src/main/java/net/shibboleth/shared/scripting/EvaluableScript.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/shib-support/src/main/java/net/shibboleth/shared/scripting/EvaluableScript.java b/shib-support/src/main/java/net/shibboleth/shared/scripting/EvaluableScript.java
index 699d3de9..31260d9e 100644
--- a/shib-support/src/main/java/net/shibboleth/shared/scripting/EvaluableScript.java
+++ b/shib-support/src/main/java/net/shibboleth/shared/scripting/EvaluableScript.java
@@ -207,7 +207,7 @@ public final class EvaluableScript extends AbstractInitializableComponent {
         scriptEngine = engineManager.getEngineByName(scriptLanguage);
         if (scriptEngine == null) {
             // fallback into our private implementations?
-            log.debug("Native support for {} not found, trying shibboleth-{}", scriptLanguage, scriptLanguage);
+            log.trace("Native support for {} not found, trying shibboleth-{}", scriptLanguage, scriptLanguage);
             scriptEngine = engineManager.getEngineByName("shibboleth-" + scriptLanguage);
         }
         Constraint.isNotNull(scriptEngine, "No scripting engine associated with scripting language " + scriptLanguage);

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


More information about the commits mailing list