All Downloads are FREE. Search and download functionalities are using the official Maven repository.

chapters.filters.thresholdFilterConfig.xml Maven / Gradle / Ivy

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

<configuration>
  <appender name="CONSOLE" class="ch.qos.logback.core.ConsoleAppender">

    <!-- deny all events with a level below INFO, that is TRACE and DEBUG -->
    <filter class="ch.qos.logback.classic.filter.ThresholdFilter">
      <level>INFO</level>
    </filter>
    <encoder>
      <pattern>%-4relative [%thread] %-5level %logger{30} - %msg%n</pattern>
    </encoder>
  </appender>

  
  <root level="DEBUG">
    <appender-ref ref="CONSOLE" />
  </root>

</configuration>




© 2015 - 2025 Weber Informatics LLC | Privacy Policy