Let's not force users to use specific logging framework

This commit is contained in:
김선우
2025-02-02 13:00:03 +09:00
parent 5d5261637b
commit 985c5139be
2 changed files with 4 additions and 2 deletions

View File

@@ -0,0 +1,11 @@
<configuration>
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
<encoder>
<pattern>%d{yyyy-MM-dd HH:mm:ss} %-5level %logger{36} - %msg%n</pattern>
</encoder>
</appender>
<root level="${LOG_LEVEL:-info}">
<appender-ref ref="STDOUT" />
</root>
</configuration>