85fc66e8d6
* the logger output is now written into a file in the cemu_UI directory called app.log
21 lines
672 B
XML
21 lines
672 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<Configuration status="INFO">
|
|
<Appenders>
|
|
|
|
<Console name="console" target="SYSTEM_OUT">
|
|
<PatternLayout pattern="[%-5level] %d{yyyy-MM-dd HH:mm:ss} [%t] %c{1} - %msg%n" />
|
|
</Console>
|
|
|
|
<File name="file" fileName="${sys:logFilename}" immediateFlush="true">
|
|
<PatternLayout pattern="[%-5level] %d{yyyy-MM-dd HH:mm:ss} [%t] %c{1} - %msg%n" />
|
|
</File>
|
|
|
|
</Appenders>
|
|
<Loggers>
|
|
<Root level="debug" additivity="false">
|
|
<AppenderRef ref="console" />
|
|
<AppenderRef ref="file"/>
|
|
</Root>
|
|
</Loggers>
|
|
</Configuration>
|