26.6. Logback扩展

Spring Boot包含很多有用的Logback扩展,你可以在logback-spring.xml配置文件中使用它们。

你不能在标准的logback.xml配置文件中使用扩展,因为它加载的太早了,不过可以使用logback-spring.xml,或指定logging.config属性。

警告 这些扩展不能和Logback的配置扫描一起使用。如果你尝试这样做,改变配置文件会导致类似与下面的错误:

ERROR in ch.qos.logback.core.joran.spi.Interpreter@4:71 - no applicable action for [springProperty], current ElementPath is [[configuration][springProperty]]
ERROR in ch.qos.logback.core.joran.spi.Interpreter@4:71 - no applicable action for [springProfile], current ElementPath is [[configuration][springProfile]]

最后更新于