Equinox 中的 Sling 日志记录配置

Sling logging configuration in Equinox

我正在尝试在 Equinox 项目中使用 Apache Sling 日志记录。它工作正常,但我无法让 Sling 使用我的配置文件。我正在使用标准的 logback 配置 xml,它应该根据 Sling documentation 工作。但是无论我把配置文件放在哪里,Sling 就是不使用它。

我的logback配置如下:

<?xml version="1.0" encoding="UTF-8"?>
<configuration>

  <appender name="CONSOLE" class="ch.qos.logback.core.ConsoleAppender">
    <!-- encoders are assigned the type
         ch.qos.logback.classic.encoder.PatternLayoutEncoder by default -->
    <encoder>
      <pattern>%d{dd.MM.yyyy HH:mm:ss.SSS} *%level* [%thread] %logger %message%n</pattern>
    </encoder>
  </appender>

  <root level="debug">
    <appender-ref ref="CONSOLE" />
  </root>
</configuration>

我设法让 Sling 使用我的配置文件的唯一方法是将配置文件的位置作为 VM 参数传递,如下所示:-Dorg.apache.sling.commons.log.configurationFile=/path/to/logbackconfigfile,其中路径是配置文件的完整路径地点。不幸的是,我还没有设法让它与相对路径一起工作。