Statistics
| Branch: | Tag: | Revision:

root / logic / logging.conf @ 06b7df28

History | View | Annotate | Download (1.5 kB)

1 57d0082a Georgios Gousios
[loggers]
2 d028ab18 Georgios Gousios
keys=root,synnefo.dispatcher,synnefo.logic,synnefo.api,synnefo.invitations,amqplib,rapi
3 57d0082a Georgios Gousios
4 57d0082a Georgios Gousios
[handlers]
5 c718de42 Georgios Gousios
keys=consoleHandler,syslogHandler
6 57d0082a Georgios Gousios
7 57d0082a Georgios Gousios
[formatters]
8 57d0082a Georgios Gousios
keys=fullFormatter
9 57d0082a Georgios Gousios
10 c718de42 Georgios Gousios
# Loggers
11 57d0082a Georgios Gousios
[logger_root]
12 57d0082a Georgios Gousios
level=DEBUG
13 e639edf9 Georgios Gousios
#handlers=consoleHandler
14 e639edf9 Georgios Gousios
handlers=syslogHandler
15 57d0082a Georgios Gousios
16 57d0082a Georgios Gousios
[logger_synnefo.dispatcher]
17 57d0082a Georgios Gousios
level=DEBUG
18 e639edf9 Georgios Gousios
#handlers=consoleHandler
19 e639edf9 Georgios Gousios
handlers=syslogHandler
20 57d0082a Georgios Gousios
qualname=synnefo.dispatcher
21 57d0082a Georgios Gousios
propagate=0
22 57d0082a Georgios Gousios
23 c718de42 Georgios Gousios
[logger_synnefo.logic]
24 c718de42 Georgios Gousios
level=DEBUG
25 e639edf9 Georgios Gousios
#handlers=consoleHandler
26 e639edf9 Georgios Gousios
handlers=syslogHandler
27 9541b89d Georgios Gousios
qualname=synnefo.logic
28 9541b89d Georgios Gousios
propagate=0
29 9541b89d Georgios Gousios
30 9541b89d Georgios Gousios
[logger_amqplib]
31 9541b89d Georgios Gousios
level=DEBUG
32 e639edf9 Georgios Gousios
#handlers=consoleHandler
33 e639edf9 Georgios Gousios
handlers=syslogHandler
34 9541b89d Georgios Gousios
qualname=amqplib
35 9541b89d Georgios Gousios
propagate=0
36 9541b89d Georgios Gousios
37 98f36397 Georgios Gousios
[logger_rapi]
38 98f36397 Georgios Gousios
level=DEBUG
39 e639edf9 Georgios Gousios
#handlers=consoleHandler
40 e639edf9 Georgios Gousios
handlers=syslogHandler
41 98f36397 Georgios Gousios
qualname=rapi
42 98f36397 Georgios Gousios
propagate=0
43 98f36397 Georgios Gousios
44 9541b89d Georgios Gousios
[logger_synnefo.api]
45 9541b89d Georgios Gousios
level=DEBUG
46 e639edf9 Georgios Gousios
#handlers=consoleHandler
47 e639edf9 Georgios Gousios
handlers=syslogHandler
48 9541b89d Georgios Gousios
qualname=synnefo.api
49 c718de42 Georgios Gousios
propagate=0
50 c718de42 Georgios Gousios
51 d028ab18 Georgios Gousios
[logger_synnefo.invitations]
52 d028ab18 Georgios Gousios
level=DEBUG
53 e639edf9 Georgios Gousios
#handlers=consoleHandler
54 e639edf9 Georgios Gousios
handlers=syslogHandler
55 d028ab18 Georgios Gousios
qualname=synnefo.invitations
56 d028ab18 Georgios Gousios
propagate=0
57 d028ab18 Georgios Gousios
58 c718de42 Georgios Gousios
# Handlers
59 57d0082a Georgios Gousios
[handler_consoleHandler]
60 57d0082a Georgios Gousios
class=StreamHandler
61 57d0082a Georgios Gousios
level=DEBUG
62 57d0082a Georgios Gousios
formatter=fullFormatter
63 57d0082a Georgios Gousios
args=(sys.stdout,)
64 57d0082a Georgios Gousios
65 c718de42 Georgios Gousios
[handler_syslogHandler]
66 c718de42 Georgios Gousios
class=logging.handlers.SysLogHandler
67 c718de42 Georgios Gousios
level=DEBUG
68 c718de42 Georgios Gousios
formatter=fullFormatter
69 e639edf9 Georgios Gousios
# Default configuration, works on Linux
70 e639edf9 Georgios Gousios
args=("/dev/log",handlers.logging.handlers.SysLogHandler.LOG_DAEMON,)
71 e639edf9 Georgios Gousios
# Syslog over UDP, slow
72 e639edf9 Georgios Gousios
#args=(('localhost', 514),handlers.SysLogHandler.LOG_DAEMON,)
73 e639edf9 Georgios Gousios
# The Mac thinks different...
74 c718de42 Georgios Gousios
#args=('/var/run/syslog',handlers.SysLogHandler.LOG_DAEMON,)
75 c718de42 Georgios Gousios
76 c718de42 Georgios Gousios
# Formatters
77 57d0082a Georgios Gousios
[formatter_fullFormatter]
78 57d0082a Georgios Gousios
format=%(asctime)s - %(name)s[%(process)d] - %(levelname)s - %(message)s