feat: added log4j. It's way better than System.stderr.

This commit is contained in:
Pierre Tellier
2025-02-26 14:28:31 +01:00
parent e66fa33577
commit d8bc7cc9b6
6 changed files with 40 additions and 121 deletions

View File

@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<Configuration status="INFO">
<Appenders>
<Console name="console" target="SYSTEM_OUT">
<PatternLayout pattern="%d{yyyy-MM-dd HH:mm:ss.SSS} [%t] %-5level %logger{36} - %msg%n"/>
</Console>
</Appenders>
<Loggers>
<Root level="trace">
<AppenderRef ref="console"/>
</Root>
</Loggers>
</Configuration>