diff options
| author | Donald Sharp <sharpd@cumulusnetworks.com> | 2017-09-26 15:43:23 -0400 | 
|---|---|---|
| committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2017-09-26 15:43:23 -0400 | 
| commit | 95744ad8644ccfa02ff41c394c0e0aea4b0964f3 (patch) | |
| tree | 0c807534b5c504c0a896ee86165574bbd0fbfcbb /zebra/debug.c | |
| parent | 5c4dc90307b3718ea5f9ed093b994d0c586d370a (diff) | |
zebra: Display if we are debugging zebra vxlan or not
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'zebra/debug.c')
| -rw-r--r-- | zebra/debug.c | 2 | 
1 files changed, 2 insertions, 0 deletions
diff --git a/zebra/debug.c b/zebra/debug.c index afeba1c6de..4ba8585f3e 100644 --- a/zebra/debug.c +++ b/zebra/debug.c @@ -83,6 +83,8 @@ DEFUN_NOSH (show_debugging_zebra,  		vty_out(vty, "  Zebra next-hop tracking debugging is on\n");  	if (IS_ZEBRA_DEBUG_MPLS)  		vty_out(vty, "  Zebra MPLS debugging is on\n"); +	if (IS_ZEBRA_DEBUG_VXLAN) +		vty_out(vty, "  Zebra VXLAN debugging is on\n");  	if (IS_ZEBRA_DEBUG_PW)  		vty_out(vty, "  Zebra pseudowire debugging is on\n");  | 
