mirror of
https://gitee.com/iresty/apisix.git
synced 2024-12-15 09:21:26 +08:00
d05fcc6854
* feature: supported to print the input parameters and return values of the specified function for debugging.
16 lines
576 B
YAML
16 lines
576 B
YAML
hook_conf:
|
|
enable: false # enable or disable this feature
|
|
name: hook_phase # the name of module and function list
|
|
log_level: warn # log level
|
|
is_print_input_args: true # print the input arguments
|
|
is_print_return_value: true # print the return value
|
|
|
|
hook_phase: # module and function list, name: hook_phase
|
|
apisix: # required module name
|
|
- http_access_phase # function name
|
|
- http_header_filter_phase
|
|
- http_body_filter_phase
|
|
- http_log_phase
|
|
|
|
#END
|