[BUG] logback.xml in jar
chuey619 opened this issue · 1 comments
It appears that in the published jar, the logback.xml configuration was bundled with the library which is causing warnings to appear for users of the library that have their own logback.xml in their project.
22:03:44,772 |-WARN in ch.qos.logback.classic.LoggerContext[default] - Resource [logback.xml] occurs multiple times on the classpath. 22:03:44,772 |-WARN in ch.qos.logback.classic.LoggerContext[default] - Resource [logback.xml] occurs at [file:/Volumes/GradleBuildRAMDisk/api/api/resources/main/logback.xml] 22:03:44,772 |-WARN in ch.qos.logback.classic.LoggerContext[default] - Resource [logback.xml] occurs at [jar:file:/Users/abc/.gradle/caches/modules-2/files-2.1/it.skrape/skrapeit-browser-fetcher/1.1.5/428cea6d688faf0c7f59bc099be7edcb49d3b2a3/skrapeit-browser-fetcher-1.1.5.jar!/logback.xml]
I was testing this library in a spring boot application where I have a custom logback-spring.xml
configuration and suddenly my logs are different 😅
Setting logging.config
explicitly does the job!