Springboot the log used by default is Logback, so using logback does not require you to add log dependent dependencies, execute the Add logback.xml configuration file, Springboot This clever framework will be able to handle your configuration.
Practice: Put the logback.xml under the resources (CLASSPATH) can be. The configuration reference is as follows:
<?XML version= "1.0" encoding= "UTF-8"?><Configuration> <Statuslistenerclass= "Ch.qos.logback.core.status.NopStatusListener"/> <Jmxconfigurator/> <Appendername= "stdout"class= "Ch.qos.logback.core.ConsoleAppender"> <Encoder> <pattern>%date [%thread]%-5level%logger{80}-%msg%n</pattern> </Encoder> </Appender> < Propertyname= "Log.base"value= "./log/member"/> <Appendername= "LogFile"class= "Ch.qos.logback.core.rolling.RollingFileAppender"> <File>${log.base}.log</File> <Rollingpolicyclass= "Ch.qos.logback.core.rolling.TimeBasedRollingPolicy"> <Filenamepattern>${log.base}.%d{yyyy-mm-dd}.log</Filenamepattern> </Rollingpolicy> <Encoder> <pattern>%date [%thread]%-5level%logger{80}-%msg%n</pattern> </Encoder> </Appender> <!--Setting the log level - <Loggername= "Cn.joiner"additivity= "false" > < Levelvalue= "Info" /> <Appender-refref= "stdout"/> <Appender-refref= "LogFile"/> </Logger> <Root Level= "INFO"> <Appender-refref= "stdout"/> <Appender-refref= "LogFile"/> </Root></Configuration>
At this point, the project is restarted and the log configuration takes effect.
Springboot use of the third: Springboot use Logback log