Setting spring.devtools.restart.log-condition-evaluation-delta=false in application.properties do not prevent the Condition Evaluation report to be writing to the log output.
Note that I have debug=true as I'm running the application in my development environment.
As a workaround, I'm setting logging.level.org.springframework.boot.autoconfigure.logging.ConditionEvaluationReportLoggingListener=INFO. This should be avoided by using the correct property to disable the report.
The application restart is working properly.
I'm using Spring Boot 2.1.4.RELEASE.
Setting
spring.devtools.restart.log-condition-evaluation-delta=false
in application.properties do not prevent the Condition Evaluation report to be writing to the log output.20.2.1 Logging changes in condition evaluation
Note that I have
debug=true
as I'm running the application in my development environment.As a workaround, I'm setting
logging.level.org.springframework.boot.autoconfigure.logging.ConditionEvaluationReportLoggingListener=INFO
. This should be avoided by using the correct property to disable the report.The application restart is working properly. I'm using Spring Boot 2.1.4.RELEASE.
Could you guys, please have a look?
Thank you.