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.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
<?xml version="1.0" encoding="UTF-8"?>
<configuration >
<!-- 定义日志文件的存储地址 勿在 LogBack 的配置中使用相对路径 -->
<property name= "LOG_HOME" value= "C:/tclog" />
<!-- 按照每天生成日志文件 -->
<appender name= "FILE"
class= "ch.qos.logback.core.rolling.RollingFileAppender" >
<!-- <rollingPolicy
class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy">
日志文件输出的文件名
<FileNamePattern>${LOG_HOME}/Test.log.%d{yyyy - MM - dd}.log
<FileNamePattern>C:\Users\cbang\Desktop\bill\日志测试/Test.log.%d{yyyy - MM - dd}.log
</FileNamePattern>
日志文件保留天数
<MaxHistory>30</MaxHistory>
</rollingPolicy> -->
<rollingPolicy class= "ch.qos.logback.core.rolling.SizeAndTimeBasedRollingPolicy" >
<!-- rollover daily -->
<fileNamePattern > ${LOG_HOME}/consumer.%d{yyyy-MM-dd}.%i.log</fileNamePattern>
<!-- each file should be at most 100MB, keep 60 days worth of history, but at most 20GB -->
<maxFileSize > 5MB</maxFileSize>
<maxHistory > 30</maxHistory>
</rollingPolicy>
<encoder
class= "ch.qos.logback.classic.encoder.PatternLayoutEncoder" >
<!-- 格式化输出:%d表示日期, %thread表示线程名, % - 5level: 级别从左显示5个字符宽度%msg: 日志消息, %n是换行符 -->
<pattern > %d{yyyy-MM-dd HH:mm:ss.SSS} [%thread] %-5level %logger{50} - %msg%n</pattern>
</encoder>
</appender>
<!-- 日志输出级别 -->
<root level= "INFO" >
<appender-ref ref= "FILE" />
</root>
</configuration>