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
Folks can anyone explain why this is not working?
$ export LOGGING_LEVEL_COM_ACME=ERROR
For all other configuration using environment variables as an override seems to work with no issues, for example:
$ export EUREKA_CLIENT_ENABLED=false
Thanks.