mirror of
https://github.com/nosqlbench/nosqlbench.git
synced 2025-02-25 18:55:28 -06:00
58 lines
2.0 KiB
XML
58 lines
2.0 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!--
|
|
~ Copyright (c) 2022 nosqlbench
|
|
~
|
|
~ Licensed 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">
|
|
|
|
<Filter type="ThresholdFilter" level="trace"/>
|
|
|
|
<Appenders>
|
|
<Appender type="Console" name="STDOUT">
|
|
<Layout type="PatternLayout" pattern="%7r %-5level [%t] %-12logger{0} %msg%n%throwable"/>
|
|
<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"/><!-- class and line number -->
|
|
<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="APPSLOG" fileName="docs/apps.log">
|
|
<Layout type="PatternLayout">
|
|
<Pattern>%d %p %C{1.} [%t] %m%n</Pattern>
|
|
</Layout>
|
|
</Appender>
|
|
</Appenders>
|
|
|
|
<Loggers>
|
|
|
|
<Logger name="io.nosqlbench.docsys" level="info" additivity="false">
|
|
<AppenderRef ref="APPSLOG"/>
|
|
</Logger>
|
|
|
|
<Root level="trace">
|
|
<AppenderRef ref="STDOUT"/>
|
|
</Root>
|
|
|
|
</Loggers>
|
|
|
|
</Configuration>
|