[java-idp-plugin-jetty] branch main updated: JJETTY-37 Startup logging for IdP seems to be absent

Codeberg noreply at shibboleth.net
Sun Apr 12 15:25:41 UTC 2026


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

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

View the commit online:
https://codeberg.org/Shibboleth/java-idp-plugin-jetty/commit/61e0e3729a12427d5896947e533a7124edf3b9f7

The following commit(s) were added to refs/heads/main by this push:
     new 61e0e37  JJETTY-37 Startup logging for IdP seems to be absent
61e0e37 is described below

commit 61e0e3729a12427d5896947e533a7124edf3b9f7
Author: Rod Widdowson <rdw at steadingsoftware.com>
AuthorDate: Sun Apr 12 15:07:10 2026 +0100

    JJETTY-37 Startup logging for IdP seems to be absent
    
    https://shibboleth.atlassian.net/browse/JJETTY-37
    
    Add missing -Dlogback.configurationFile=%JETTY_BASE%/resources/logback.xml
    to runjetty.bat and runjetty.sh (prorun was already set up)
---
 .../src/main/resources/net/shibboleth/idp/module/jetty/runjetty.bat    | 3 +--
 .../src/main/resources/net/shibboleth/idp/module/jetty/runjetty.sh     | 2 +-
 2 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/jetty-impl/src/main/resources/net/shibboleth/idp/module/jetty/runjetty.bat b/jetty-impl/src/main/resources/net/shibboleth/idp/module/jetty/runjetty.bat
index 810a10f..e7e0e91 100644
--- a/jetty-impl/src/main/resources/net/shibboleth/idp/module/jetty/runjetty.bat
+++ b/jetty-impl/src/main/resources/net/shibboleth/idp/module/jetty/runjetty.bat
@@ -49,8 +49,7 @@ if not exist "%JETTY_BASE%\start.d" (
   exit /b
 )
 
-set JVM_ARGS=-Didp.home="%IDP_HOME_UNIX%" -Djava.io.tmpdir="%JETTY_TMP%" -XX:+UseG1GC
-
+set JVM_ARGS=-Didp.home="%IDP_HOME_UNIX%" -Djava.io.tmpdir="%JETTY_TMP%" -XX:+UseG1GC -Dlogback.configurationFile="%JETTY_BASE%\resources\logback.xml"
 
 SET JETTY_ARGS=jetty.base="%JETTY_BASE%" jetty.logging.dir="%IDP_HOME_WINDOWS%\logs"
 
diff --git a/jetty-impl/src/main/resources/net/shibboleth/idp/module/jetty/runjetty.sh b/jetty-impl/src/main/resources/net/shibboleth/idp/module/jetty/runjetty.sh
index 81d673f..4d3fdee 100644
--- a/jetty-impl/src/main/resources/net/shibboleth/idp/module/jetty/runjetty.sh
+++ b/jetty-impl/src/main/resources/net/shibboleth/idp/module/jetty/runjetty.sh
@@ -53,7 +53,7 @@ if [ ! -e "$JETTY_TMP" ] ; then
   mkdir "$JETTY_TMP"
 fi
 
-JVM_ARGS="-Didp.home=$IDP_HOME -Djava.io.tmpdir=$JETTY_TMP -XX:+UseG1GC"
+JVM_ARGS="-Didp.home=$IDP_HOME -Djava.io.tmpdir=$JETTY_TMP -XX:+UseG1GC -Dlogback.configurationFile=$JETTY_BASE/resources/logback.xml"
 
 JETTY_ARGS="jetty.base=$JETTY_BASE jetty.logging.dir=$IDP_HOME/logs --exec"
 

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


More information about the commits mailing list