4. spring boot 1.5.4 log management, spring1.5.4
By default, spring boot logs are Output Using logback. You can customize logback as follows:
Create a logback. xml configuration file in the resources folder
<? Xml version = "1.0" encoding = "UTF-8"?> <Configuration> <! -- Base. xml in the spring-boot jar, --> <include resource = "org/springframework/boot/logging/logback/base. xml"/> <! -- <Logger name = "org. springframework. web" level = "DEBUG"/> --> <! -- Outputs The hibernate SQL statement and records it in the file log at the same time. Therefore, use spring. jpa. show-SQL to configure better --> <! -- <Logger name = "org. hibernate. SQL "level =" DEBUG "/> --> <logger name =" org. springframework. jdbc. core. jdbcTemplate "level =" DEBUG "/> <logger name =" org. apache. tomcat. jdbc. pool "level =" DEBUG "/> </configuration>
Specific configuration, you can go to the spring-boot.jar to see
The log file path is configured in application. properties.
Logging. file =/tmp/logs/springboottest. log