summaryrefslogtreecommitdiffstats
path: root/ipa-server/ipa-gui/ipagui/config/log.cfg
blob: 483069cd769e1270a5266f52c2dba6e88d1c3352 (plain)
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
29
30
31
32
# LOGGING
# Logging is often deployment specific, but some handlers and
# formatters can be defined here.

[logging]
[[formatters]]
[[[message_only]]]
format='*(message)s'

[[[full_content]]]
format='*(asctime)s *(name)s *(levelname)s *(message)s'

[[[datestamped]]]
format='*(asctime)s *(message)s'

[[handlers]]
[[[debug_out]]]
class='StreamHandler'
level='DEBUG'
args='(sys.stdout,)'
formatter='full_content'

[[[access_out]]]
class='StreamHandler'
level='INFO'
args='(sys.stdout,)'
formatter='datestamped'

[[[error_out]]]
class='StreamHandler'
level='ERROR'
args='(sys.stdout,)'