"Fossies" - the Fresh Open Source Software Archive

Member "apache-log4j-2.12.4-src/log4j-core/src/test/resources/log4j2-properties-trailing-space-on-level.properties" (20 Dec 2021, 1602 Bytes) of package /linux/misc/apache-log4j-2.12.4-src.tar.gz:


As a special service "Fossies" has tried to format the requested text file into HTML format (style: standard) with prefixed line numbers. Alternatively you can here view or download the uninterpreted source code file.

    1 # Licensed to the Apache Software Foundation (ASF) under one or more
    2 # contributor license agreements.  See the NOTICE file distributed with
    3 # this work for additional information regarding copyright ownership.
    4 # The ASF licenses this file to You under the Apache License, Version 2.0
    5 # (the "License"); you may not use this file except in compliance with
    6 # the License.  You may obtain a copy of the License at
    7 #
    8 #      http://www.apache.org/licenses/LICENSE-2.0
    9 #
   10 # Unless required by applicable law or agreed to in writing, software
   11 # distributed under the License is distributed on an "AS IS" BASIS,
   12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   13 # See the License for the specific language governing permissions and
   14 # limitations under the License.
   15 
   16 status = ERROR
   17 dest = err
   18 
   19 filter.Threshold.type = ThresholdFilter
   20 filter.Threshold.level = DEBUG
   21 
   22 appender.Stdout.type = Console
   23 appender.Stdout.name = StdOut
   24 appender.Stdout.target = SYSTEM_OUT
   25 appender.Stdout.layout.type = PatternLayout
   26 appender.Stdout.layout.pattern = %d [%t] %-5level: %msg%n%throwable
   27 appender.Stdout.filter.marker.type = MarkerFilter
   28 appender.Stdout.filter.marker.onMatch = DENY
   29 appender.Stdout.filter.marker.onMisMatch = NEUTRAL
   30 appender.Stdout.filter.marker.marker = FLOW
   31 
   32 logger.log4j.name = org.apache.logging.log4j
   33 logger.log4j.appenderRef.console.ref = StdOut
   34 #added a trailing space to the level on purpose in order to test for correct initialzation of level
   35 logger.log4j.level = DEBUG 
   36 logger.log4j.additivity = false
   37 
   38 rootLogger.appenderRef.console.ref = StdOut
   39 rootLogger.level = ERROR