Skip to content

Commit

Permalink
Fix console logging woes
Browse files Browse the repository at this point in the history
  • Loading branch information
kuroppoi committed Nov 19, 2023
1 parent 163ced2 commit 68bdb7d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/resources/log4j2.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
<Appenders>
<Console name="Console" target="SYSTEM_OUT">
<PatternLayout pattern="${PATTERN_DETAILED}"/>
<ThresholdFilter level="INFO"/>
</Console>
<RollingFile name="LogFile" fileName="${LOGS_DIR}/latest.log" filePattern="${LOGS_DIR}/%d{yyyy-MM-dd}-%i.log.gz">
<PatternLayout pattern="${PATTERN_DETAILED}"/>
Expand All @@ -31,9 +32,8 @@
<AppenderRef ref="LogFile"/>
<AppenderRef ref="GuiOutput"/>
<AppenderRef ref="DebugLogFile"/>
</Logger>
<Root level="all">
<AppenderRef ref="Console"/>
</Root>
</Logger>
<Root level="all"/>
</Loggers>
</Configuration>

0 comments on commit 68bdb7d

Please sign in to comment.