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
(cherry picked from commit 812aa726ef
)
This commit is contained in:
parent
b89f6a596d
commit
0502fb1aa0
@ -158,6 +158,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:
|
||||
|
||||
@ -233,6 +241,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