You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
869 B
XML
22 lines
869 B
XML
2 years ago
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
<configuration>
|
||
|
<include resource="org/springframework/boot/logging/logback/base.xml"/>
|
||
|
<logger name="org.springframework.web" level="INFO"/>
|
||
|
<logger name="org.springboot.sample" level="TRACE"/>
|
||
|
|
||
|
<!-- 开发、测试环境 -->
|
||
|
<springProfile name="dev,test,local">
|
||
|
<logger name="org.springframework.web" level="DEBUG"/>
|
||
|
<logger name="org.springboot.sample" level="DEBUG"/>
|
||
|
<logger name="com.supervision" level="DEBUG"/>
|
||
|
<logger name="org.springframework.scheduling" level="DEBUG"/>
|
||
|
</springProfile>
|
||
|
|
||
|
<!-- 生产环境 -->
|
||
|
<springProfile name="prod">
|
||
|
<logger name="org.springframework.web" level="ERROR"/>
|
||
|
<logger name="org.springboot.sample" level="ERROR"/>
|
||
|
<logger name="com.supervision" level="INFO"/>
|
||
|
</springProfile>
|
||
|
|
||
|
</configuration>
|