From cf00164b69743b541505da8301a340d5dd9154ce Mon Sep 17 00:00:00 2001 From: Donald Sharp Date: Fri, 7 Oct 2022 07:51:17 -0400 Subject: *: Create and use infrastructure to show debugs in lib There are lib debugs being set but never show up in `show debug` commands because there was no way to show that they were being used. Add a bit of infrastructure to allow this and then use it for `debug route-map` Signed-off-by: Donald Sharp --- lib/command.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'lib/command.c') diff --git a/lib/command.c b/lib/command.c index a23afb1e43..7e171cb309 100644 --- a/lib/command.c +++ b/lib/command.c @@ -48,6 +48,7 @@ #include "lib_errors.h" #include "northbound_cli.h" #include "network.h" +#include "routemap.h" #include "frrscript.h" @@ -2446,6 +2447,11 @@ const char *host_config_get(void) return host.config; } +void cmd_show_lib_debugs(struct vty *vty) +{ + route_map_show_debug(vty); +} + void install_default(enum node_type node) { _install_element(node, &config_exit_cmd); -- cgit v1.2.3