mirror of
https://github.com/frosch95/SmartCSV.fx.git
synced 2026-04-11 13:38:23 +02:00
26 lines
767 B
XML
26 lines
767 B
XML
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
|
<Configuration status="error">
|
||
|
|
|
||
|
|
<Properties>
|
||
|
|
<Property name="filename">smartcsv.log</Property>
|
||
|
|
</Properties>
|
||
|
|
<ThresholdFilter level="trace"/>
|
||
|
|
|
||
|
|
<Appenders>
|
||
|
|
<Console name="Console" target="SYSTEM_OUT">
|
||
|
|
<PatternLayout pattern="%d{HH:mm:ss.SSS} [%t] %-5level %logger{36} - %msg%n"/>
|
||
|
|
</Console>
|
||
|
|
|
||
|
|
<File name="File" fileName="${filename}" bufferedIO="true">
|
||
|
|
<PatternLayout>
|
||
|
|
<pattern>%d %p %C{1.} [%t] %m%n</pattern>
|
||
|
|
</PatternLayout>
|
||
|
|
</File>
|
||
|
|
</Appenders>
|
||
|
|
<Loggers>
|
||
|
|
<Root level="error">
|
||
|
|
<AppenderRef ref="File"/>
|
||
|
|
<AppenderRef ref="Console"/>
|
||
|
|
</Root>
|
||
|
|
</Loggers>
|
||
|
|
</Configuration>
|