-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathlogback.xml
More file actions
23 lines (18 loc) · 827 Bytes
/
logback.xml
File metadata and controls
23 lines (18 loc) · 827 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<appender name="PAPERTRAIL" class="com.papertrailapp.logback.Syslog4jAppender">
<layout class="ch.qos.logback.classic.PatternLayout">
<pattern>%d{MMM dd HH:mm:ss} %-5level %logger{35}: %m%n%xEx</pattern>
</layout>
<syslogConfig class="org.productivity.java.syslog4j.impl.net.tcp.ssl.SSLTCPNetSyslogConfig">
<sendLocalTimestamp>false</sendLocalTimestamp>
<sendLocalName>false</sendLocalName>
<host>http://analyzeme-dev.herokuapp.com/</host>
<ident>AnalyzeMe</ident>
<maxMessageLength>128000</maxMessageLength>
</syslogConfig>
</appender>
<root level="DEBUG">
<appender-ref ref="SYSLOG-TLS"/>
</root>
</configuration>