spring-loaded
spring-loaded copied to clipboard
Use of java.util.logging breaks Wildfly
Because spring-loaded uses java.util.logging the LogManager is eagerly initialized. Because Wildfly uses modular class loading this happens before the Modules system has been set up, and as a result the class loader that contains the LogManager is not available yet, and as a result boot fails.
Would you be open to accepting a patch that removes the use of java.util.logging, and replaces it with something simpler (e.g. stdout logging)?