Browse Source

Add logback configuration

master
Chris Smith 12 years ago
parent
commit
17225e94db
1 changed files with 15 additions and 0 deletions
  1. 15
    0
      etc/logback.xml

+ 15
- 0
etc/logback.xml View 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…
Cancel
Save