Sfoglia il codice sorgente

Add logback configuration

master
Chris Smith 12 anni fa
parent
commit
17225e94db
1 ha cambiato i file con 15 aggiunte e 0 eliminazioni
  1. 15
    0
      etc/logback.xml

+ 15
- 0
etc/logback.xml Vedi File

@@ -0,0 +1,15 @@
1
+<?xml version="1.0" encoding="UTF-8"?>
2
+<configuration debug="true">
3
+
4
+ <appender name="lileth" class="ch.qos.logback.classic.net.SocketAppender">
5
+  <RemoteHost>localhost</RemoteHost>
6
+  <Port>4560</Port>
7
+  <ReconnectionDelay>170</ReconnectionDelay>
8
+  <IncludeCallerData>true</IncludeCallerData>
9
+ </appender>
10
+
11
+ <root level="trace">
12
+  <appender-ref ref="lileth" />
13
+ </root>
14
+
15
+</configuration>

Loading…
Annulla
Salva