Spring Boot動態修改日誌級別

weixin_34391854發表於2018-07-11

1、

pom中引入

org.springframework.boot       spring-boot-starter-actuator

 

 

2、

傳送POST請求:

 

地址

http://[服務地址]:[服務埠]/loggers/[要修改日誌級別的包路徑]

 

請求頭

name: Content-Type

value: application/json

 

請求體

{"configuredLevel":"DEBUG"}

後邊的DEBUG為日誌級別

 

 

 

參考內容:

https://blog.csdn.net/tlk20071/article/details/75304086

相關文章