diff options
| author | Christian Hopps <chopps@labn.net> | 2023-04-26 17:50:46 -0400 |
|---|---|---|
| committer | Christian Hopps <chopps@labn.net> | 2023-05-01 13:47:12 -0400 |
| commit | cfa0facbf936fc6cc053fafea7d2b6fa8bccfc4c (patch) | |
| tree | 727b06f65947ae9702c691dfeb4dfe8951225ca8 /lib/command.c | |
| parent | 13c426150fd4699466306d88a917df6493faf9bd (diff) | |
mgmtd: fully implement debug flags for mgmtd and clients
Signed-off-by: Christian Hopps <chopps@labn.net>
Diffstat (limited to 'lib/command.c')
| -rw-r--r-- | lib/command.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/command.c b/lib/command.c index 97ea200ff4..27cd3a04bd 100644 --- a/lib/command.c +++ b/lib/command.c @@ -31,6 +31,8 @@ #include "jhash.h" #include "hook.h" #include "lib_errors.h" +#include "mgmt_be_client.h" +#include "mgmt_fe_client.h" #include "northbound_cli.h" #include "network.h" #include "routemap.h" @@ -2438,6 +2440,8 @@ const char *host_config_get(void) void cmd_show_lib_debugs(struct vty *vty) { route_map_show_debug(vty); + mgmt_debug_be_client_show_debug(vty); + mgmt_debug_fe_client_show_debug(vty); } void install_default(enum node_type node) |
