wl_management/target/classes/logback-spring.xml
2020-06-02 17:56:35 +08:00

24 lines
926 B
XML

<!--<?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">
<logger name="org.springframework.web" level="INFO"/>
<logger name="org.springboot.sample" level="INFO" />
<!-- <logger name="com.lz.modules.sys.dao" level="DEBUG" />-->
<!-- <logger name="com.lz.modules.app.dao" level="DEBUG" />-->
<logger name="io.lz" level="DEBUG" />
</springProfile>
<!-- 生产环境 -->
<springProfile name="prod">
<logger name="org.springframework.web" level="ERROR"/>
<logger name="org.springboot.sample" level="ERROR" />
<logger name="io.lz" level="ERROR" />
</springProfile>
</configuration>