"Fossies" - the Fresh Open Source Software Archive

Member "apache-log4j-2.12.4-src/log4j-core/src/test/resources/log4j-reference-level.json" (20 Dec 2021, 1923 Bytes) of package /linux/misc/apache-log4j-2.12.4-src.tar.gz:


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

    1 /*
    2  * Licensed to the Apache Software Foundation (ASF) under one or more
    3  * contributor license agreements. See the NOTICE file distributed with
    4  * this work for additional information regarding copyright ownership.
    5  * The ASF licenses this file to You under the Apache license, Version 2.0
    6  * (the "License"); you may not use this file except in compliance with
    7  * the License. You may obtain a copy of the License at
    8  *
    9  *      http://www.apache.org/licenses/LICENSE-2.0
   10  *
   11  * Unless required by applicable law or agreed to in writing, software
   12  * distributed under the License is distributed on an "AS IS" BASIS,
   13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   14  * See the license for the specific language governing permissions and
   15  * limitations under the license.
   16  */
   17 { "configuration": { "status": "error", "XMLConfigTest": "RoutingTest",
   18     "appenders": {
   19         "appender": [
   20             { "type": "Console", "name": "STDOUT", "PatternLayout": { "pattern": "%m%n" }},
   21             { "type": "List", "name": "LIST1"},
   22             { "type": "List", "name": "LIST2"}
   23         ]
   24     },
   25     "loggers": {
   26         "logger": [
   27             { "name": "org.apache.logging.log4j.test1", "level": "trace", "additivity": "false",
   28                 "AppenderRef": [{ "ref": "LIST1", "level": "trace" }, {"ref": "LIST2", "level": "error"}]},
   29             { "name": "org.apache.logging.log4j.test2", "level": "debug", "additivity": "false",
   30                 "AppenderRef": [{ "ref": "LIST1", "level": "warn" }, {"ref": "LIST2", "level": "debug"}]},
   31             { "name": "org.apache.logging.log4j.test3", "level": "trace", "additivity": "false",
   32                 "AppenderRef": {"ref": "LIST1", "level": "trace",
   33                     "MarkerFilter": {"marker" : "TEST", "onMatch": "deny", "onMismatch": "accept"}} }
   34         ],
   35         "root": { "level": "error", "AppenderRef": { "ref": "STDOUT" }}
   36     }
   37   }
   38 }