Spring Boot 2.0 在yml中更改日志级别到底怎么写?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring Boot 2.0 在yml中更改日志级别到底怎么写?相关的知识,希望对你有一定的参考价值。

有一种是用 Spring Boot Actuator
```
management:
endpoints:
web:
exposure:
include: 'loggers'
```
另一种是写 logging: level:
```
logging:
level:
org.springfromework.web: INFO
org.hibernate: ERROR
```

这两种方法有什么区别?
还是说其中一种是另一种实现的基础?

参考技术A 上面是spring boot监控配置,他的日志log指向下面那种的。本回答被提问者采纳

以上是关于Spring Boot 2.0 在yml中更改日志级别到底怎么写?的主要内容,如果未能解决你的问题,请参考以下文章

application.yml 中的 Spring Boot 日志设置

Spring Boot

Spring boot 学习 四:spring boot 配置文件 application.yml

Spring boot application.properties和 application.yml 初学者的学习

Spring Boot 2.0 热部署指南

spring-boot中如何配置tomcat访问日志的位置和名称?