I use Spring Boot and want it to write log output to a file.
According to the docs, this is simply done by setting
logging.file=filename.log <
logging.file=filename.log
In my case, I was using logging.file in the application property file.
logging.file
Instead, I need to used logging.file.name, since then I can be able to get the logs into the directed path file.
logging.file.name