diff options
| author | Donald Sharp <donaldsharp72@gmail.com> | 2022-04-20 15:04:16 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-04-20 15:04:16 -0400 |
| commit | 1327a85cd7cb7df1e7e1d961133ef424de1adbad (patch) | |
| tree | f9d62d59683ee0eff81421d9f4fa41ba82b356b0 | |
| parent | d2c5bbe3817d74796c38164ff50fa2b1c1cd58a6 (diff) | |
| parent | c7fd8c62d90a35c552eeb784b6a85a7f60462488 (diff) | |
Merge pull request #11061 from pguibert6WIND/debug_isis_bfd_too
isisd: enable BFD messaging debug when isis bfd is used
| -rw-r--r-- | isisd/isisd.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/isisd/isisd.c b/isisd/isisd.c index 47fe62d27c..85307f448b 100644 --- a/isisd/isisd.c +++ b/isisd/isisd.c @@ -2158,6 +2158,7 @@ DEFUN (debug_isis_bfd, PROTO_NAME " interaction with BFD\n") { debug_bfd |= DEBUG_BFD; + bfd_protocol_integration_set_debug(true); print_debug(vty, DEBUG_BFD, 1); return CMD_SUCCESS; @@ -2172,6 +2173,7 @@ DEFUN (no_debug_isis_bfd, PROTO_NAME " interaction with BFD\n") { debug_bfd &= ~DEBUG_BFD; + bfd_protocol_integration_set_debug(false); print_debug(vty, DEBUG_BFD, 0); return CMD_SUCCESS; |
