Logback 日志打印格式思考
前言
日志打印格式官网:https://logback.qos.ch/manual/layouts.html
附录
<?xml version="1.0" encoding="UTF-8"?> <configuration scan="true" scanPeriod="60 seconds" debug="false"> <property name="APP" value="logbackLearn" /> <contextName>${APP}</contextName> <appender name="console" class="ch.qos.logback.core.ConsoleAppender"> <encoder> <pattern>%date{yyyy-MM-dd HH:mm:ss.SSS} %-5level [%thread] %class.%method.%L %msg %ex{full} %n</pattern> </encoder> </appender> <root level="DEBUG"> <appender-ref ref="console" /> </root> </configuration>