I imported a third-party library into my Java/Spring project (just importing, nothing from the library is used) and when I run the app I get:
ERROR in ch.qos.logback.core.rolling.SizeAndTimeBasedFNATP@1aea858e - Missing integer token, that is %i, in FileNamePattern [jboss.server.log.dir_IS_UNDEFINED/bak-library-%d{yyyy-MM}.log.zip]
ERROR in ch.qos.logback.core.rolling.SizeAndTimeBasedFNATP@1aea858e - See also http://logback.qos.ch/codes.html#sat_missing_integer_token
at org.springframework.boot.logging.logback.LogbackLoggingSystem.loadConfiguration(LogbackLoggingSystem.java:152)
at org.springframework.boot.logging.logback.LogbackLoggingSystem.reinitialize(LogbackLoggingSystem.java:195)
at org.springframework.boot.logging.AbstractLoggingSystem.initializeWithConventions(AbstractLoggingSystem.java:65)
at org.springframework.boot.logging.AbstractLoggingSystem.initialize(AbstractLoggingSystem.java:50)
I was wondering - is this an issue with the third-party library itself or I can add some configuration in my project in order to fix this (basically the library assumes that a client will provide such configuration so it throws an error if there isn't)?