Skip to content

Commit

Permalink
Create logback.xml
Browse files Browse the repository at this point in the history
  • Loading branch information
karmaking authored Jan 8, 2024
1 parent f385a8a commit a9ef4b1
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/WEB-INF/classes/logback.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<configuration>

<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
<encoder>
<pattern>%d{yyyy-MM-dd HH:mm:ss} %t %c{0} [%p] %m%n</pattern>
</encoder>
</appender>

<root level="INFO">
<appender-ref ref="STDOUT"/>
</root>
</configuration>

0 comments on commit a9ef4b1

Please sign in to comment.