Set 'DEBUG' to horizon::log_level if HorizonDebug or Debug is true
Previously, if HorzionDebug of Debug was true, horizon::django_debug was set to True. However, those parameters didn't change the logger level of horizon components. By this change, when HorizonDebug or Debug is True, horizon::log_level is set to 'DEBUG'. Change-Id: I0a140682c552ba8a4e943124330852259e66142d
This commit is contained in:
parent
df883ea179
commit
812aa726ef
@ -153,6 +153,14 @@ conditions:
|
||||
equals:
|
||||
- {get_param: [ServiceData, net_ip_version_map, {get_param: [ServiceNetMap, HorizonNetwork]}]}
|
||||
- 6
|
||||
horizon_logger_debug:
|
||||
or:
|
||||
- yaql:
|
||||
expression: $.data.horizon_debug.matches("true|True|TRUE")
|
||||
data:
|
||||
horizon_debug:
|
||||
get_param: HorizonDebug
|
||||
- get_param: Debug
|
||||
|
||||
resources:
|
||||
|
||||
@ -228,6 +236,10 @@ outputs:
|
||||
- debug_unset
|
||||
- horizon::django_debug: { get_param: HorizonDebug }
|
||||
- horizon::django_debug: { get_param: Debug }
|
||||
- if:
|
||||
- horizon_logger_debug
|
||||
- horizon::log_level: 'DEBUG'
|
||||
- {}
|
||||
- if:
|
||||
- horizon_domain_choices_set
|
||||
- horizon::keystone_domain_choices: {get_param: HorizonDomainChoices}
|
||||
|
@ -0,0 +1,8 @@
|
||||
---
|
||||
fixes:
|
||||
- |
|
||||
Previously, HorizonDebug and Debug parameters change the value of
|
||||
horizon::django_debug. However, those parameters didn't set DEBUG
|
||||
log level to horizon logger components.
|
||||
By this change, if those are true, horizon::log_level is set to
|
||||
'DEBUG'.
|
Loading…
Reference in New Issue
Block a user