Finish log4j implementation

This commit is contained in:
Jan-Niclas Loosen
2025-10-28 15:32:34 +01:00
parent 3795ab9d29
commit f578691c25
6 changed files with 55 additions and 35 deletions

View File

@@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<Configuration status="WARN">
<Appenders>
<Console name="Console" target="SYSTEM_OUT">
<PatternLayout pattern="%d{HH:mm:ss.SSS} [%t] %-5level %logger{36} - %msg%n"/>
</Console>
</Appenders>
<Loggers>
<Logger name="de.unitrier.st.uap.w25.tram" level="TRACE" additivity="false">
<AppenderRef ref="Console"/>
</Logger>
<Root level="TRACE">
<AppenderRef ref="Console"/>
</Root>
</Loggers>
</Configuration>