Log condition evaluation delta upon DevTools restart

This commit is contained in:
Andy Wilkinson
2017-11-24 14:03:34 +00:00
parent 480039f212
commit 7674841946
6 changed files with 170 additions and 17 deletions

View File

@@ -813,6 +813,18 @@ http://zeroturnaround.com/software/jrebel/[JRebel] from ZeroTurnaround. These wo
rewriting classes as they are loaded to make them more amenable to reloading.
****
[[using-boot-devtools-restart-logging-condition-delta]]
==== Logging changes in condition evaluation
By default, each time your application restarts, a report showing the condition evaluation
delta is logged. The report shows the changes to your application's auto-configuration as
you make changes such as adding or removing beans and setting configuration properties.
To disable the logging of the report, set the following property:
[indent=0]
----
spring.devtools.restart.log-condition-evaluation-delta=false
----
[[using-boot-devtools-restart-exclude]]