How can I exclude the conditions evaluation report from the console of a Spring boot application?

后端 未结 3 2104
时光取名叫无心
时光取名叫无心 2020-12-15 06:42

When I run my Spring boot application, I get the conditions evaluation report in my console logs.

How can I disable or exclude this report from my console logs in Sp

3条回答
  •  有刺的猬
    2020-12-15 07:02

    While the other answer works, it's also possible to set the log level to INFO:

    logging.level.org.springframework.boot.autoconfigure=INFO
    

提交回复
热议问题