You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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 text was updated successfully, but these errors were encountered:
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 BootLoggingApplicationListener
and this happens before the Broadleaf properties one. So by the time the Broadleaf-basedruntime-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 theLoggingApplicationListener
.The text was updated successfully, but these errors were encountered: