]> mj.ucw.cz Git - libucw.git/blob - ucw/log-conf-test.cf
3ceaaf34527d5676322dcef1c5861cb722436467
[libucw.git] / ucw / log-conf-test.cf
1 Include cf/libucw
2
3 Logging {
4
5 Stream {
6         Name            logfile
7         FileName        log/test
8         Limit { Rate 100 }
9 }
10
11 Stream {
12         Name            logfile2
13         FileName        log/test2
14         Microseconds    1
15         Levels:reset    info warn error
16         Types:reset     default foo
17         ErrorsFatal     1
18         ShowTypes       1
19 }
20
21 Stream {
22         Name            syslog
23         SyslogFacility  user
24         SyslogPID       1
25 }
26
27 Stream {
28         Name            combined
29         Substream       logfile
30         Substream       logfile2
31         Substream       syslog
32 }
33
34 }