Author: kskuhlman
Date: Tue Sep 29 22:47:21 2009
New Revision: 6744
URL: http://trac.turbogears.org/changeset/6744
Log:
log_debug_info_hook is now log_debug_info_filter. This was already changed &
noted in the changelog, but snuck back in during merges.
Modified:
branches/1.5/turbogears/command/base.py
branches/1.5/turbogears/startup.py
Modified: branches/1.5/turbogears/command/base.py
==============================================================================
--- branches/1.5/turbogears/command/base.py (original)
+++ branches/1.5/turbogears/command/base.py Tue Sep 29 22:47:21 2009
@@ -334,7 +334,7 @@
'server.log_to_screen': True,
'autoreload.on': False,
'server.package': 'turbogears.toolbox',
- 'log_debug_info_filter.on': False,
+ 'log_debug_info_hook.on': False,
'identity.failure_url': '/noaccess',
'identity.force_external_redirect': False,
'tg.defaultview': 'kid',
Modified: branches/1.5/turbogears/startup.py
==============================================================================
--- branches/1.5/turbogears/startup.py (original)
+++ branches/1.5/turbogears/startup.py Tue Sep 29 22:47:21 2009
@@ -114,12 +114,12 @@
config.update({'/tg_static': {
'tools.staticdir.on': True,
'tools.staticdir.dir': abspath(rfn(__name__, 'static')),
- 'log_debug_info_filter.on': False,
+ 'log_debug_info_hook.on': False,
}})
config.update({'/tg_js': {
'tools.staticdir.on': True,
'tools.staticdir.dir': abspath(rfn(__name__, 'static/js')),
- 'log_debug_info_filter.on': False,
+ 'log_debug_info_hook.on': False,
}})
# Add decoding
config.update({'/': {