我想在Spring Boot应用程序中配置日志记录。我已经配置了 logback-spring.xml 。当我尝试尝试时, logback-spring.xml 的示例位于here上,而 application-dev.properties 文件的示例位于here运行spring boot应用程序时出现以下错误:
java.lang.IllegalStateException: Logback configuration error detected:
ERROR in ch.qos.logback.core.joran.util.PropertySetter@5b7a5baa - Failed to invoke valueOf{} method in class [ch.qos.logback.core.util.FileSize] with value [{LOG_FILE_MAX_SIZE}]
ERROR in c.q.l.core.rolling.SizeAndTimeBasedRollingPolicy@2003496028 - maxFileSize property is mandatory.
如果我将<maxFileSize>{LOG_FILE_MAX_SIZE}</maxFileSize>
替换为<maxFileSize>50MB</maxFileSize>
,应用程序将成功运行