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
We have a Spring boot application deployed into a tomcat instance. A tomcat instance can contain multiple webapp instances.
We noticed that Spring Boot logger system was setting system properties using System.setProperty in LoggingSystemProperties. This is very bad in our case since a system property is global to the JVM and therefore to all deployed web applications.
This looks like a major bug to us.
Is there at least a way to disable LoggingApplicationListener?