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