mirror of
https://github.com/CarmJos/EasyConfiguration.git
synced 2026-06-04 10:38:19 +08:00
20 lines
675 B
XML
20 lines
675 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<Configuration status="WARN" packages="config.SQLConfigTest">
|
|
<Appenders>
|
|
<console name="Console" target="SYSTEM_OUT">
|
|
<PatternLayout pattern="[%d{HH:mm:ss} %level]: %msg%n"/>
|
|
</console>
|
|
</Appenders>
|
|
<Loggers>
|
|
<Root level="info">
|
|
<filters>
|
|
<MarkerFilter marker="NETWORK_PACKETS" onMatch="DENY" onMismatch="NEUTRAL"/>
|
|
<RegexFilter regex=".*\$\{[^}]*\}.*" onMatch="DENY" onMismatch="NEUTRAL"/>
|
|
</filters>
|
|
<AppenderRef ref="File"/>
|
|
<appender-ref ref="Console"/>
|
|
</Root>
|
|
</Loggers>
|
|
</Configuration>
|
|
|