I would like to use the debug=true flag when running my spring boot applications during development, but I do not want it to print the autoconfiguration report every time I start the application because I am not changing my spring configuration all the time and it should be enough to only look at the autoconfiguration report when I actually need to make some modifications to the auto configuration.
Is there a way to deactivate the autoconfig report in a spring boot application but at the same time keep the debug flag such that debug message are still printed in log output?