-
Notifications
You must be signed in to change notification settings - Fork 32
/
log4crc
28 lines (21 loc) · 1.04 KB
/
log4crc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE log4c SYSTEM "">
<log4c>
<config>
<bufsize>0</bufsize>
<debug level="0"/>
<nocleanup>0</nocleanup>
</config>
<!-- root category ========================================= -->
<category name="root" priority="notice"/>
<!-- default appenders ===================================== -->
<appender name="stdout" type="stream" layout="basic"/>
<appender name="stderr" type="stream" layout="dated_local"/>
<appender name="syslog" type="syslog" layout="basic"/>
<!-- default layouts ======================================= -->
<layout name="basic" type="basic"/>
<layout name="dated_local" type="dated_local"/>
<category name="GMLLog" priority="debug" appender="GMLRollingAppender"/>
<appender name="GMLRollingAppender" type="rollingfile" logdir="/var/log" prefix="gMaxLinked.log" layout="dated_local" rollingpolicy="GMLRollingPolicy" />
<rollingpolicy name="GMLRollingPolicy" type="sizewin" maxsize="2097152" maxnum="99" />
</log4c>