旭捷内部项目管理系统
You can not 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
791 B

10 months ago
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <configuration>
  3. <include resource="org/springframework/boot/logging/logback/base.xml" />
  4. <logger name="org.springframework.web" level="ERROR"/>
  5. <logger name="org.springboot.sample" level="ERROR" />
  6. <!-- 开发、测试环境 -->
  7. <springProfile name="dev,test">
  8. <logger name="org.springframework.web" level="ERROR"/>
  9. <logger name="org.springboot.sample" level="ERROR" />
  10. <logger name="com.xujie" level="DEBUG" />
  11. </springProfile>
  12. <!-- 生产环境 -->
  13. <springProfile name="prod">
  14. <logger name="org.springframework.web" level="ERROR"/>
  15. <logger name="org.springboot.sample" level="ERROR" />
  16. <logger name="com.xujie" level="ERROR" />
  17. </springProfile>
  18. </configuration>