The Broadleaf properties are added to the environment in the BroadleafEnvironmentConfiguringApplicationListener. The problem is that the Spring Boot logging (and the properties affecting logging) is added via the Boot LoggingApplicationListener and this happens before the Broadleaf properties one. So by the time the Broadleaf-based runtime-properties are added to the environment, all of the logging properties have already happened.
The fix should be to just change the ordering of the BroadleafEnvironmentConfiguringApplicationListener to be ordered before the LoggingApplicationListener.
The Broadleaf properties are added to the environment in the
BroadleafEnvironmentConfiguringApplicationListener. The problem is that the Spring Boot logging (and the properties affecting logging) is added via the BootLoggingApplicationListenerand this happens before the Broadleaf properties one. So by the time the Broadleaf-basedruntime-propertiesare added to the environment, all of the logging properties have already happened.The fix should be to just change the ordering of the
BroadleafEnvironmentConfiguringApplicationListenerto be ordered before theLoggingApplicationListener.