logback.xml 679 B

1234567891011121314151617
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <configuration debug="false" scan="true" scanPeriod="1000 seconds">
  3. <!-- Output to Console -->
  4. <appender name="Console" class="ch.qos.logback.core.ConsoleAppender">
  5. <encoder>
  6. <pattern>%d{yyyy-MM-dd HH:mm:ss} %level %c:%L - %msg%n</pattern>
  7. <charset>UTF-8</charset>
  8. </encoder>
  9. </appender>
  10. <!-- 打印级别,大小写无关:TRACE, DEBUG, INFO, WARN, ERROR, ALL 和 OFF 默认是DEBUG -->
  11. <root level="INFO">
  12. <appender-ref ref="Console" />
  13. </root>
  14. <logger name="com.sooka" level="INFO" />
  15. <logger name="org.springframework" level="INFO" />
  16. </configuration>