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
```
这两种方法有什么区别?
还是说其中一种是另一种实现的基础?
以上是关于Spring Boot 2.0 在yml中更改日志级别到底怎么写?的主要内容,如果未能解决你的问题,请参考以下文章
application.yml 中的 Spring Boot 日志设置
Spring boot 学习 四:spring boot 配置文件 application.yml