Merge pull request #8601 from Fredi-raspall/pr_fix_lfa_debug

isisd: fix show LFA debug in show debugging cmd
This commit is contained in:
Renato Westphal 2021-05-01 21:28:07 -03:00 committed by GitHub
commit 83187b8285
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -1376,6 +1376,9 @@ DEFUN_NOSH (show_debugging,
print_debug(vty, DEBUG_BFD, 1);
if (IS_DEBUG_LDP_SYNC)
print_debug(vty, DEBUG_LDP_SYNC, 1);
if (IS_DEBUG_LFA)
print_debug(vty, DEBUG_LFA, 1);
return CMD_SUCCESS;
}