Skip to content

Commit

Permalink
Adding log4j2.xml
Browse files Browse the repository at this point in the history
  • Loading branch information
marigostra committed May 3, 2024
1 parent 3b59b18 commit 434369e
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions src/main/resources/log4j2.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<Configuration status="INFO">
<Appenders>
<Console name="console" target="SYSTEM_OUT">
<PatternLayout pattern="%msg (%logger{36} %t %-5level)%n" />
</Console>
</Appenders>

<Loggers>
<Root level="trace">
<AppenderRef ref="console" />
</Root>
</Loggers>
</Configuration>

0 comments on commit 434369e

Please sign in to comment.