Show scopes in OAuth authorization page
[cds-indico.git] / etc / logging.conf.sample
blobdffe4487b088c71b0639328a7f3dea77b2c6be50
1 [loggers]
2 keys=root,celery
4 [handlers]
5 keys=indico,other,celery,stderr,smtp
7 [formatters]
8 keys=defaultFormatter,simpleFormatter,mailFormatter
10 # For deactivating a handler, remove its entry from
11 # the list below.
12 [logger_root]
13 level=WARNING
14 handlers=indico,other,smtp
16 [logger_celery]
17 level=INFO
18 handlers=celery,stderr
19 qualname=celery
21 # By default, the args are taken from the indico.conf file.
22 # For setting your custom arguments, uncomment the args entry below.
23 [handler_indico]
24 class=FileHandler
25 level=NOTSET
26 formatter=defaultFormatter
27 #args=('',)
29 # By default, the args are taken from the indico.conf file.
30 # For setting your custom arguments, uncomment the args entry below.
31 [handler_other]
32 class=FileHandler
33 level=WARNING
34 formatter=defaultFormatter
35 #args=('',)
37 # By default, the args are taken from the indico.conf file.
38 # For setting your custom arguments, uncomment the args entry below.
39 [handler_celery]
40 class=FileHandler
41 level=NOTSET
42 formatter=defaultFormatter
43 #args=('',)
45 # By default, the args are taken from the indico.conf file.
46 # For setting your custom arguments, uncomment args the entry below.
47 [handler_smtp]
48 class=handlers.SMTPHandler
49 level=ERROR
50 formatter=mailFormatter
51 #args=('','',[],'')
53 [handler_stderr]
54 class=StreamHandler
55 level=NOTSET
56 formatter=simpleFormatter
58 [formatter_mailFormatter]
59 format=%(asctime)s %(name)s - %(levelname)s %(filename)s:%(lineno)d -- %(message)s
60 datefmt=
62 [formatter_defaultFormatter]
63 format=%(asctime)s  %(levelname)-7s  %(request_id)s  %(name)-25s %(message)s
64 datefmt=
66 [formatter_simpleFormatter]
67 format=%(asctime)s  %(levelname)-7s  %(name)-25s %(message)s
68 datefmt=