我想要一个我的应用程序的外部日志,但我没有设法做到这一点。我在资源文件夹中有logaback.xml:
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<include resource="org/springframework/boot/logging/logback/base.xml"/>
<logger name="org.springframework.web" level="DEBUG"/>
</configuration>
我有一个带有这个内容的application.yml:
# ========================
# LOGGING
# ========================
#logging:
file: /tmp/application.log
# Enable this to specify the path and the name of the log file. By default, it creates a
# file named spring.log in the temp directory.
在文件夹tmp中,只有一个文件是spring.log,包含来自应用程序的所有日志,但我需要一个带有其他名称的文件,并在另一个文件夹中进行级别调试。
任何人都可以帮助我吗?
谢谢!