spring boot · 2023-04-30 0

springboot 配置日志

1.pom

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-logging</artifactId>
</dependency>

2.application.yml

logging:
  level:
    root: info
    com.example.controller: debug
// TODO