I am currently using Spring Boot
in my application and I know that it uses Logback
as its default logging implementation.
Currently in my applications.properties
file I have the following:
#some other properties
#logging details
logging.path= path/to/my/log/folder
This currently logs to a file: spring.log
in my output folder.
How can I change this file so that it contains a time-stamp and date of when it was created?
E.g - "my-application-log-DATE-TIME.log"