Resource [logback.xml] occurs multiple times on the classpath

有时项目中会遇到日志不生效的问题,仔细看控制台的输出(或日志)会发现

Resource [logback.xml] occurs multiple times on the classpath

这是由于项目classpath中包含多个logback.xml导致的,可能是第三方jar包也包括该文件。

Resource [logback.xml] occurs multiple times on the classpath_第1张图片

 

 解决方式有两种:

  • 将本项目中的logback.xml改为logback-spring.xml(该方式未起作用)
  • 自定义日志文件名称(起作用) logging.config=classpath:logging-config.xml

参考链接:从零搭建开发脚手架 注意Logback多个配置文档导致配置紊乱问题_多个logback.xml冲突_lakernote的博客-CSDN博客

你可能感兴趣的:(logback,java)