Repository: logging-log4j2 Updated Branches: refs/heads/master 4b4f115dc -> bc296c55f
For a future test. Project: http://git-wip-us.apache.org/repos/asf/logging-log4j2/repo Commit: http://git-wip-us.apache.org/repos/asf/logging-log4j2/commit/bc296c55 Tree: http://git-wip-us.apache.org/repos/asf/logging-log4j2/tree/bc296c55 Diff: http://git-wip-us.apache.org/repos/asf/logging-log4j2/diff/bc296c55 Branch: refs/heads/master Commit: bc296c55f624a00428a572f40e8cd34c6124de7d Parents: 4b4f115 Author: Gary Gregory <ggreg...@apache.org> Authored: Thu Jun 23 21:50:24 2016 -0700 Committer: Gary Gregory <ggreg...@apache.org> Committed: Thu Jun 23 21:50:24 2016 -0700 ---------------------------------------------------------------------- .../src/test/resources/log4j-rolling-7z.xml | 58 ++++++++++++++++++++ 1 file changed, 58 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/bc296c55/log4j-core/src/test/resources/log4j-rolling-7z.xml ---------------------------------------------------------------------- diff --git a/log4j-core/src/test/resources/log4j-rolling-7z.xml b/log4j-core/src/test/resources/log4j-rolling-7z.xml new file mode 100644 index 0000000..5f86134 --- /dev/null +++ b/log4j-core/src/test/resources/log4j-rolling-7z.xml @@ -0,0 +1,58 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + 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 status="OFF" name="XMLConfigTest"> + <Properties> + <Property name="filename">target/rolling1/rollingtest.log</Property> + </Properties> + <ThresholdFilter level="debug"/> + + <Appenders> + <Console name="STDOUT"> + <PatternLayout pattern="%m%n"/> + </Console> + <RollingFile name="RollingFile" fileName="${filename}" + filePattern="target/rolling1/test1-$${date:MM-dd-yyyy}-%i.log.7z"> + <PatternLayout> + <Pattern>%d %p %C{1.} [%t] %m%n</Pattern> + </PatternLayout> + <SizeBasedTriggeringPolicy size="500" /> + </RollingFile> + <List name="List"> + <ThresholdFilter level="error"/> + </List> + </Appenders> + + <Loggers> + <Logger name="org.apache.logging.log4j.test1" level="debug" additivity="false"> + <ThreadContextMapFilter> + <KeyValuePair key="test" value="123"/> + </ThreadContextMapFilter> + <AppenderRef ref="STDOUT"/> + </Logger>> + + <Logger name="org.apache.logging.log4j.core.appender.rolling" level="debug" additivity="false"> + <AppenderRef ref="RollingFile"/> + </Logger>> + + <Root level="error"> + <AppenderRef ref="STDOUT"/> + </Root> + </Loggers> + +</Configuration> \ No newline at end of file