I have a spring-boot application with the following configuration in application.yml
server: contextPath: /rti tomcat: access-log-enabled: true access-log-pattern: "%h %l %u %t \"%r\" %s %b %D" basedir: tomcat
You will be asked to create an access log tomcat / logs / access_log.2015-02-02.txt.
I would like to be able to configure where the access log is created and what it is called; but after a long search I begin to think that this is impossible. Does anyone know how to achieve this?
Application logging works fine using logging and configuration in logback.xml
source share