Files
coal/src/main/resources/logback-spring.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>