[java-shib-shared] 11/12: Turn down logging on fall through to our home grown engines
Scott Cantor
cantor.2 at osu.edu
Wed Jan 31 14:15:58 UTC 2024
This is an automated email from the git hooks/post-receive script.
scantor pushed a commit to branch dev/thymeleaf
in repository java-shib-shared.
View the commit online:
http://git.shibboleth.net/view/?p=java-shib-shared.git;a=commit;h=80f61bfb994ba6aa400c91f96b34f330a8d5a11e
commit 80f61bfb994ba6aa400c91f96b34f330a8d5a11e
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