Should it be possible to set logging levels through environment variables alone in a Spring Boot application?
I don\'t want to use application.properties
application.properties
This is just an idea, but did you try setting
_JAVA_OPTIONS=-Dlogging.level.org.springframework=TRACE?
_JAVA_OPTIONS=-Dlogging.level.org.springframework=TRACE
Theoretically, this way -Dlogging.level.org.springframework=TRACE will be passed as default JVM argument and should affect every JVM instance in your environment.
-Dlogging.level.org.springframework=TRACE