Statistics
| Branch: | Tag: | Revision:

root / logic / logging.conf @ 583bfaa0

History | View | Annotate | Download (1.4 kB)

1 57d0082a Georgios Gousios
[loggers]
2 98f36397 Georgios Gousios
keys=root,synnefo.dispatcher,synnefo.logic,synnefo.api,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 9541b89d Georgios Gousios
handlers=consoleHandler
14 9541b89d Georgios Gousios
#handlers=syslogHandler
15 57d0082a Georgios Gousios
16 57d0082a Georgios Gousios
[logger_synnefo.dispatcher]
17 57d0082a Georgios Gousios
level=DEBUG
18 9541b89d Georgios Gousios
handlers=consoleHandler
19 9541b89d 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 9541b89d Georgios Gousios
handlers=consoleHandler
26 9541b89d 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 9541b89d Georgios Gousios
handlers=consoleHandler
33 9541b89d 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 98f36397 Georgios Gousios
handlers=consoleHandler
40 98f36397 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 9541b89d Georgios Gousios
handlers=consoleHandler
47 9541b89d Georgios Gousios
#handlers=syslogHandler
48 9541b89d Georgios Gousios
qualname=synnefo.api
49 c718de42 Georgios Gousios
propagate=0
50 c718de42 Georgios Gousios
51 c718de42 Georgios Gousios
# Handlers
52 57d0082a Georgios Gousios
[handler_consoleHandler]
53 57d0082a Georgios Gousios
class=StreamHandler
54 57d0082a Georgios Gousios
level=DEBUG
55 57d0082a Georgios Gousios
formatter=fullFormatter
56 57d0082a Georgios Gousios
args=(sys.stdout,)
57 57d0082a Georgios Gousios
58 c718de42 Georgios Gousios
[handler_syslogHandler]
59 c718de42 Georgios Gousios
class=logging.handlers.SysLogHandler
60 c718de42 Georgios Gousios
level=DEBUG
61 c718de42 Georgios Gousios
formatter=fullFormatter
62 c718de42 Georgios Gousios
# Default conf, syslog over UDP, slow
63 c718de42 Georgios Gousios
args=(('localhost', 514),handlers.SysLogHandler.LOG_DAEMON,)
64 c718de42 Georgios Gousios
# On Linux, the following is faster and safer
65 c718de42 Georgios Gousios
#args=("/dev/log",handlers.logging.handlers.SysLogHandler.LOG_DAEMON,)
66 9541b89d Georgios Gousios
# The Mac, as expected, thinks different...
67 c718de42 Georgios Gousios
#args=('/var/run/syslog',handlers.SysLogHandler.LOG_DAEMON,)
68 c718de42 Georgios Gousios
69 c718de42 Georgios Gousios
# Formatters
70 57d0082a Georgios Gousios
[formatter_fullFormatter]
71 57d0082a Georgios Gousios
format=%(asctime)s - %(name)s[%(process)d] - %(levelname)s - %(message)s