"Fossies" - the Fresh Open Source Software Archive 
Member "apache-log4j-2.12.4-src/log4j-core/src/test/resources/RollingRandomAccessFileAppenderLocationPropsTest.properties" (20 Dec 2021, 1571 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 name = PropertiesConfigTest
18
19 appenders = rolling
20
21 appender.rolling.type = RollingRandomAccessFile
22 appender.rolling.name = RollingRandomAccessFile
23 appender.rolling.fileName = target/RollingRandomAccessFileAppenderLocationPropsTest.log
24 appender.rolling.filePattern = target/RollingProps/test-%d{MM-dd-yyyy}-%i.log.gz
25 appender.rolling.append = false
26 appender.rolling.immediateFlush = true;
27 appender.rolling.layout.type = PatternLayout
28 appender.rolling.layout.pattern = %d %p %c{1.} [%t] %X{aKey} %m %location %ex%n
29 appender.rolling.policies.type = Policies
30 appender.rolling.policies.time.type = TimeBasedTriggeringPolicy
31
32 rootLogger.level = info
33 rootLogger.includeLocation = false
34 rootLogger.appenderRefs = rolling
35 rootLogger.appenderRef.rolling.ref = RollingRandomAccessFile