~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to dev.cfg

  • Committer: Robey Pointer
  • Date: 2006-12-11 06:44:19 UTC
  • Revision ID: robey@lag.net-20061211064419-8ssa7mlsiflpmy0c
initial checkin

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
# Enable the debug output at the end on pages.
33
33
# log_debug_info_filter.on = False
34
34
 
35
 
#server.environment="development"
36
 
server.environment="production"
37
 
#autoreload.package="loggerhead"
 
35
server.environment="development"
 
36
autoreload.package="loggerhead"
38
37
 
39
38
# session_filter.on = True
40
39
 
42
41
# unexpected parameter. False by default
43
42
tg.strict_parameters = True
44
43
 
45
 
# turn on timer scheduling
46
 
tg.scheduler = True
47
 
 
48
44
# LOGGING
49
45
# Logging configuration generally follows the style of the standard
50
46
# Python logging module configuration. Note that when specifying
55
51
[[loggers]]
56
52
[[[loggerhead]]]
57
53
level='DEBUG'
58
 
#qualname='loggerhead'
 
54
qualname='loggerhead'
59
55
handlers=['debug_out']
60
56
 
61
 
#[[[allinfo]]]
62
 
#level='INFO'
63
 
#handlers=['debug_out']
 
57
[[[allinfo]]]
 
58
level='INFO'
 
59
handlers=['debug_out']
64
60
 
65
61
[[[access]]]
66
62
level='INFO'
67
63
qualname='turbogears.access'
68
64
handlers=['access_out']
69
65
propagate=0
70
 
 
71
 
 
72
 
 
73