I have a logback-spring.xml in my resources folder together with my application.yml
i added the code below on my application.yml
logging:
config: logback-spring.xml
contents of logback-spring.xml was based on here
it does not create the log with the filename I indicated below
<file>/var/log/mylog.log</file>
...
<fileNamePattern>/var/log/mylog.%d{yyyy-MM-dd-HH-mm}.log</fileNamePattern>
any idea how to get this working?