polylith

Mark Wardle 2025-09-07T07:34:28.628249Z

Hi. I have added a logback-test.xml to my project's test directory and ensured that my project's deps.edn file has :extra-paths ["test"] but it doesn't seem as if logback is picking up this in the classpath. I'm a bit flummoxed.

Mark Wardle 2025-09-07T08:13:48.307119Z

Ok the fix was to put the logback-test.xml file into the base component of the project, and not the project itself, which makes sense now I think about it.

๐Ÿ‘ 1
seancorfield 2025-09-07T14:03:30.296649Z

We have log config files on the :dev classpath for local/test stuff -- in development/resources -- and in the per-`projects` classpaths for production.

๐Ÿ‘ 1
Mark Wardle 2025-09-08T12:24:22.684659Z

Thanks Sean. Thatโ€™s helpful advice.