mirror of
https://codeup.aliyun.com/64f7d6b8ce01efaafef1e678/coal/coal.git
synced 2026-01-25 07:46:40 +08:00
16 lines
823 B
XML
16 lines
823 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<configuration>
|
|
<springProperty scope="context" name="app" source="spring.application.name"
|
|
defaultValue="spring"/>
|
|
|
|
<springProperty scope="context" name="profile" source="spring.profiles.active" defaultValue="default"/>
|
|
<include resource="org/springframework/boot/logging/logback/defaults.xml"/>
|
|
<property name="LOG_FILE" value="${LOG_PATH:-${LOG_TEMP:-${java.io.tmpdir:-/tmp}}}/${app}-${profile}.log"/>
|
|
<include resource="org/springframework/boot/logging/logback/console-appender.xml"/>
|
|
<include resource="org/springframework/boot/logging/logback/file-appender.xml"/>
|
|
<logger name="org.quartz" level="WARN"/>
|
|
<root level="INFO">
|
|
<appender-ref ref="CONSOLE"/>
|
|
<appender-ref ref="FILE"/>
|
|
</root>
|
|
</configuration> |