comparison examples/turbogears/genshitest/config/log.cfg @ 230:24757b771651

Renamed Markup to Genshi in repository.
author cmlenz
date Mon, 11 Sep 2006 15:07:07 +0000
parents examples/turbogears/markuptest/config/log.cfg@f8612f05af99
children
comparison
equal deleted inserted replaced
229:110d69dbbda3 230:24757b771651
1 # LOGGING
2 # Logging is often deployment specific, but some handlers and
3 # formatters can be defined here.
4
5 [logging]
6 [[formatters]]
7 [[[message_only]]]
8 format='*(message)s'
9
10 [[[full_content]]]
11 format='*(asctime)s *(name)s *(levelname)s *(message)s'
12
13 [[handlers]]
14 [[[debug_out]]]
15 class='StreamHandler'
16 level='DEBUG'
17 args='(sys.stdout,)'
18 formatter='full_content'
19
20 [[[access_out]]]
21 class='StreamHandler'
22 level='INFO'
23 args='(sys.stdout,)'
24 formatter='message_only'
25
26 [[[error_out]]]
27 class='StreamHandler'
28 level='ERROR'
29 args='(sys.stdout,)'
Copyright (C) 2012-2017 Edgewall Software