| <?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="debug" strict="true" name="XMLConfigTest" packages="org.apache.logging.log4j.test"> |
| <properties> |
| <property name="filename">target/test.log</property> |
| </properties> |
| <filter type="ThresholdFilter" level="trace"/> |
| |
| <appenders> |
| <appender type="Console" name="STDOUT"> |
| <layout type="PatternLayout" pattern="%m MDC%X%n"/> |
| <filters> |
| <filter type="MarkerFilter" marker="FLOW" onMatch="DENY" onMismatch="NEUTRAL"/> |
| <filter type="MarkerFilter" marker="EXCEPTION" onMatch="DENY" onMismatch="ACCEPT"/> |
| </filters> |
| </appender> |
| <appender type="Console" name="FLOW"> |
| <layout type="PatternLayout" pattern="%C{1}.%M %m %ex%n"/> |
| <filters> |
| <filter type="MarkerFilter" marker="FLOW" onMatch="ACCEPT" onMismatch="NEUTRAL"/> |
| <filter type="MarkerFilter" marker="EXCEPTION" onMatch="ACCEPT" onMismatch="DENY"/> |
| </filters> |
| </appender> |
| <appender type="File" name="File" fileName="${filename}"> |
| <layout type="PatternLayout"> |
| <pattern>%d %p %C{1.} [%t] %m%n</pattern> |
| </layout> |
| </appender> |
| <appender type="List" name="List"> |
| </appender> |
| </appenders> |
| |
| <loggers> |
| <logger name="org.apache.logging.log4j.test1" level="debug" additivity="false"> |
| <filter type="ThreadContextMapFilter"> |
| <KeyValuePair key="test" value="123"/> |
| </filter> |
| <appender-ref ref="STDOUT"/> |
| </logger>> |
| |
| <logger name="org.apache.logging.log4j.test2" level="debug" additivity="false"> |
| <appender-ref ref="File"/> |
| </logger>> |
| |
| <root level="trace"> |
| <appender-ref ref="List"/> |
| </root> |
| </loggers> |
| |
| </configuration> |