springboot日志配置 logging.path logging.file 注意事项
可能有些小伙伴会同时配置 logging.path 和 logging.file,但是又发现其中一个不生效。
官方文档中有这么一句:
If you want to write log files in addition to the console output you
need to set a logging.file or logging.path property
也就是说,它们不会同时生效,只配置其中一个就好了。
例如我配置的时候只指定path
logging.path = ./logs
那么记录日志的时候默认的文件名是:spring.log

本文解析了SpringBoot中logging.path和logging.file的配置注意事项,强调二者不可同时生效,仅需选择其一进行配置。通过实例说明,当仅配置logging.path时,默认日志文件名为spring.log。
2738





