summaryrefslogtreecommitdiff
path: root/pyramid/settings.py
diff options
context:
space:
mode:
Diffstat (limited to 'pyramid/settings.py')
-rw-r--r--pyramid/settings.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/pyramid/settings.py b/pyramid/settings.py
index 7cee68926..bd7e2c227 100644
--- a/pyramid/settings.py
+++ b/pyramid/settings.py
@@ -29,6 +29,9 @@ class Settings(dict):
config_debug_notfound = self.get('debug_notfound', '')
eff_debug_notfound = asbool(eget('BFG_DEBUG_NOTFOUND',
config_debug_notfound))
+ config_debug_matched = self.get('debug_matched', '')
+ eff_debug_matched = asbool(eget('BFG_DEBUG_MATCHED',
+ config_debug_matched))
config_debug_templates = self.get('debug_templates', '')
eff_debug_templates = asbool(eget('BFG_DEBUG_TEMPLATES',
config_debug_templates))
@@ -46,6 +49,7 @@ class Settings(dict):
update = {
'debug_authorization': eff_debug_all or eff_debug_auth,
'debug_notfound': eff_debug_all or eff_debug_notfound,
+ 'debug_matched': eff_debug_all or eff_debug_matched,
'debug_templates': eff_debug_all or eff_debug_templates,
'reload_templates': eff_reload_all or eff_reload_templates,
'reload_resources':eff_reload_all or eff_reload_resources,