You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
394 B
13 lines
394 B
5 years ago
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
<configuration>
|
||
|
<appender name="SYSLOG" class="ch.qos.logback.classic.net.SyslogAppender">
|
||
|
<syslogHost>localhost</syslogHost>
|
||
|
<port>10514</port>
|
||
|
<facility>DAEMON</facility>
|
||
|
<suffixPattern>bm-lmtp - [%thread] %c{1} %p - %m\n</suffixPattern>
|
||
|
</appender>
|
||
|
<root level="INFO">
|
||
|
<appender-ref ref="SYSLOG" />
|
||
|
</root>
|
||
|
</configuration>
|