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

elios-testing-common.0.8.153.source-code.logback-test.xml Maven / Gradle / Ivy

There is a newer version: 0.9.283
Show newest version
<!--
  ~ Copyright (c) 2014 Spotify AB.
  ~
  ~ Licensed to the Apache Software Foundation (ASF) under one
  ~ or more contributor license agreements.  See the NOTICE file
  ~ distributed with this work for additional information
  ~ regarding copyright ownership.  The ASF licenses this file
  ~ to you under the Apache License, Version 2.0 (the
  ~ "License"); you may not use this file except in compliance
  ~ with the License.  You may obtain a copy of the License at
  ~
  ~   http://www.apache.org/licenses/LICENSE-2.0
  ~
  ~ Unless required by applicable law or agreed to in writing,
  ~ software distributed under the License is distributed on an
  ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  ~ KIND, either express or implied.  See the License for the
  ~ specific language governing permissions and limitations
  ~ under the License.
  -->

<configuration>

  <!-- Note: This logging configuration is ignored by system tests when -DlogToFile=true -->

  <appender name="EXTERNAL_STDERR" class="ch.qos.logback.core.ConsoleAppender">
    <encoder>
      <pattern>%d{HH:mm:ss.SSS} %-5level %logger{1} %F:%L - %msg%n</pattern>
    </encoder>
    <target>System.err</target>
  </appender>

  <appender name="STDERR" class="ch.qos.logback.core.ConsoleAppender">
    <encoder>
      <pattern>%d{HH:mm:ss.SSS} %-5level %F:%L - %msg%n</pattern>
    </encoder>
    <target>System.err</target>
  </appender>

  <logger name="org.apache.curator" level="${externalLoggingLevel:-ERROR}">
    <appender-ref ref="EXTERNAL_STDERR"/>
  </logger>
  <logger name="org.apache.zookeeper" level="${externalLoggingLevel:-ERROR}">
    <appender-ref ref="EXTERNAL_STDERR"/>
  </logger>
  <logger name="org.eclipse.jetty" level="${externalLoggingLevel:-ERROR}">
    <appender-ref ref="EXTERNAL_STDERR"/>
  </logger>
  <logger name="com.yammer.metrics" level="${externalLoggingLevel:-ERROR}">
    <appender-ref ref="EXTERNAL_STDERR"/>
  </logger>

  <logger name="com.spotify.helios" level="${heliosLoggingLevel:-DEBUG}"/>

  <root level="${rootLoggingLevel:-DEBUG}">
    <appender-ref ref="STDERR"/>
  </root>

</configuration>




© 2015 - 2025 Weber Informatics LLC | Privacy Policy