This makes the program more stable, and ensures that the connection is established every time we start.
21 lines
665 B
XML
21 lines
665 B
XML
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<!--
|
|
~ Copyright (c) 2021 William Hubbard. All Rights Reserved.
|
|
-->
|
|
<Configuration status="WARN">
|
|
<Appenders>
|
|
<Console name="Console" target="SYSTEM_OUT">
|
|
<PatternLayout pattern="%c:%L %-5level - %msg%n"/>
|
|
</Console>
|
|
<File name="File" fileName="interface.log" append="false">
|
|
<PatternLayout>
|
|
<Pattern>%d{HH:mm:ss.SSS} - %c.%M(%F:%L) - %-5level - %msg%n</Pattern>
|
|
</PatternLayout>
|
|
</File>
|
|
</Appenders>
|
|
<Loggers>
|
|
<Root level="debug">
|
|
<AppenderRef ref="File"/>
|
|
</Root>
|
|
</Loggers>
|
|
</Configuration> |