With a /src/main/resources/logback.xml file in place, it's become useless to set logging.config=file:/example-dir/logback.xml because the one in the class-path will take precedence over the application.properties setting.
It took me quite a while to figure out why the app was trying to start with the default logback-settings, while other apps like Manage and AA didn't give me this issue. Obviously, they don't include a default logback.xml, so my suggestion would be to either remove it from this repo, move it to extra/logback.xml or exclude it from the jar using an exclusion in pom.xml
With a
/src/main/resources/logback.xml
file in place, it's become useless to setlogging.config=file:/example-dir/logback.xml
because the one in the class-path will take precedence over the application.properties setting. It took me quite a while to figure out why the app was trying to start with the default logback-settings, while other apps like Manage and AA didn't give me this issue. Obviously, they don't include a default logback.xml, so my suggestion would be to either remove it from this repo, move it to extra/logback.xml or exclude it from the jar using an exclusion in pom.xml