Spring Boot application using 1.1.9.RELEASE
Trying to setup logging in the simplest case
logging:
level:
org.springframework.web: DEBUG
Scenario 1: adding above lines to application.yml in /resources - WORKS
Scenario 2: when adding these lines to github repo used by config server however application does not seems to use it. Just to make sure calling /env endpoint produces the following output
configService:https://github.com/myrepo/config/file:/mypath/transportation.yml: {
logging.level.org.springframework.integration: "DEBUG",
logging.level.org.springframework.web: "TRACE",
logging.level.org.springframework.ws: "TRACE",
...
}
So Environment seems to load correctly. Also if I add logging.level lines into bootstrap.yml it works until new environment loaded from the config server (I can see DEBUG level output)
Am I missing something or there is some sort of limitation regarding logging levels and configserver?