From 88ccc51fd638a03769ebbbe2a6cd4a55080c67df Mon Sep 17 00:00:00 2001 From: nmburgan <13688219+nmburgan@users.noreply.github.com> Date: Tue, 12 May 2026 19:50:24 +0000 Subject: [PATCH] Remove scan="true" from logback.xml files that end up inside JARs Some of these files end up inside the package due to leiningen scooping up everything in dev-resources in the :base profile. If they end up being found and used during server startup rather than files on disk (such as during builds and tests), they can't be watched with scan="true" since they are read-only inside the JAR. Logback 1.5 will then log directly to stdout which we don't want. We only need scan="true" for files that get laid down by the openvox-server and openvoxdb packages. To be safe, we are removing scan="true" from all logback.xml files in all repos. Signed-off-by: nmburgan <13688219+nmburgan@users.noreply.github.com> --- dev-resources/logback-test.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-resources/logback-test.xml b/dev-resources/logback-test.xml index b13ebc2..1b93aa5 100644 --- a/dev-resources/logback-test.xml +++ b/dev-resources/logback-test.xml @@ -1,4 +1,4 @@ - + %d %-5p [%c{2}] %m%n