There's no need to wrap them in "if" statements
# Outputs the contents of the control list in debugging (-X) mode
#
debug_control {
- if("%(debug_attr:&control.[*])" == '') {
- noop
- }
+ %(debug_attr:&control.[*])
}
#
# Outputs the contents of the request list in debugging (-X) mode
#
debug_request {
- if("%(debug_attr:&request.[*])" == '') {
- noop
- }
+ %(debug_attr:&request.[*])
}
#
# Outputs the contents of the reply list in debugging (-X) mode
#
debug_reply {
- if("%(debug_attr:&reply.[*])" == '') {
- noop
- }
+ %(debug_attr:&reply.[*])
}
#