Logback日志基础及自定义配置代码实例
程序员文章站
2022-07-03 16:14:31
logback日志基础配置logback日志配置有很多介绍,但是有几个非常基础的,容易忽略的。下面是最简单的一个配置,注意加粗的描述
logback日志基础配置
logback日志配置有很多介绍,但是有几个非常基础的,容易忽略的。下面是最简单的一个配置,注意加粗的描述
<?xml version="1.0" encoding="utf-8"?> <configuration debug="true" scan="true" scanperiod="30 seconds"> <!--log.path定义的是局部变量,./logs指定的是相对路径下的文件夹logs--> <property name="log.path" value="./logs"/> <appender name="rolling-file-out" class="ch.qos.logback.core.rolling.rollingfileappender"> <!--这里的文件名是不能使用正则表达式,只能是定死的名字,实现了很久--> <file>${log.path}/errorlog.log</file> <!-- 日志输出格式:%d表示日期时间,%thread表示线程名,%-5level:级别从左显示5个字符宽度 %logger{50} 表示logger名字最长50个字符,否则按照句点分割。 %msg:日志消息,%n是换行符 --> <encoder> <pattern>%d{yyyy-mm-dd hh:mm:ss.sss} [%thread] %-5level %logger{50} - %msg%n</pattern> </encoder> <rollingpolicy class="ch.qos.logback.core.rolling.timebasedrollingpolicy"> <!-- 每天日志归档路径以及格式,可以不使用log后缀,%i:当文件大小超过maxfilesize时,按照i进行文件滚动,i从0开始滚动 --> <filenamepattern>${log.pat h}/errorlog.%d{yyyymmdd}.log.%i.gz</filenamepattern> <timebasedfilenamingandtriggeringpolicy class="ch.qos.logback.core.rolling.sizeandtimebasedfnatp"> <maxfilesize>4096mb</maxfilesize> </timebasedfilenamingandtriggeringpolicy> <!--日志文件保留天数--> <maxhistory>365</maxhistory> </rollingpolicy> </appender> <!-- 日志级别--> <root level="debug"> <appender-ref ref="rolling-file-out"/> </root> </configuration>
在规范里,行结束符往往采用linux结束符(\n),而不是上面那样的 %n。 这个\n ,使用txt文档查看,并没有换行
使用%的正则还有许许多多,比如如下:
<property name="console_log_pattern" value="%date{yyyy-mm-dd hh:mm:ss} | %highlight(%-5level) | %yellow(%thread) | %green(%logger) | %msg%n"/>
再比如:%contextname 作用是 显示主机名
logback日志自定义配置
即便如此,还是有很多想要的东西显示不了,这时就可自定义配置。比如我希望每条日志有个uuid类型的id,希望每条日志能打印ip地址
一、新建两个配置类,重写convert方法
package cn.jiashubing.config.logback; import ch.qos.logback.classic.pattern.classicconverter; import ch.qos.logback.classic.spi.iloggingevent; import java.util.uuid; public class logidconfig extends classicconverter { @override public string convert(iloggingevent event) { return uuid.randomuuid().tostring().replaceall("-", ""); } } package cn.jiashubing.config.logback; import ch.qos.logback.classic.pattern.classicconverter; import ch.qos.logback.classic.spi.iloggingevent; import java.net.inetaddress; import java.net.unknownhostexception; public class iplogconfig extends classicconverter { @override public string convert(iloggingevent event) { try { return inetaddress.getlocalhost().gethostaddress(); } catch (unknownhostexception e) { e.printstacktrace(); } return null; } }
二、配置日志文件
<property name="log.path" value="./logs"/> <conversionrule conversionword="ip" converterclass="cn.jiashubing.config.logback.iplogconfig" /> <conversionrule conversionword="logid" converterclass="cn.jiashubing.config.logback.logidconfig" /> <appender name="rolling-file-out" class="ch.qos.logback.core.rolling.rollingfileappender"> <file>${log.path}/errorlog.log</file> <encoder> <pattern>[loglevel=%level] [timestamp=%d{yyyy-mm-dd hh:mm:ss}] [logid=%logid] [ip=%ip] [cmd=%msg] \n</pattern> </encoder> ... </appender>
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。