diff options
| author | Jafar Al-Gharaibeh <jafar@atcorp.com> | 2024-08-29 11:51:53 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-08-29 11:51:53 -0400 |
| commit | 77e1a26faa3c153abf6a8abb858f435914b62625 (patch) | |
| tree | 1dd71e3d2cdb29b7c406b6a21351b2e89cb50831 /lib/command.c | |
| parent | f1e4ef461d5bd39a9ad96c4116c2c869e4f37737 (diff) | |
| parent | 830972cab211a2f7ad82d7635ad9111afac8f47b (diff) | |
Merge pull request #16664 from mjstapp/igor_debug_simplify
*: simplify frrlib debug
Diffstat (limited to 'lib/command.c')
| -rw-r--r-- | lib/command.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/command.c b/lib/command.c index 51f2529e3e..ac8d60118e 100644 --- a/lib/command.c +++ b/lib/command.c @@ -17,6 +17,7 @@ #include <lib/version.h> #include "command.h" +#include "debug.h" #include "frrstr.h" #include "memory.h" #include "log.h" @@ -2463,8 +2464,7 @@ 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); + debug_status_write(vty); } void install_default(enum node_type node) |
