]> git.proxmox.com Git - mirror_frr.git/blobdiff - zebra/debug.c
Merge pull request #5451 from opensourcerouting/rcu-log
[mirror_frr.git] / zebra / debug.c
index 16b1d0057b9eebf4ef0b6663e60a009b4974634d..68f6b6930595c0409582e1add93152b2ffea6f77 100644 (file)
@@ -544,6 +544,10 @@ static int config_write_debug(struct vty *vty)
                vty_out(vty, "debug zebra vxlan\n");
                write++;
        }
+       if (IS_ZEBRA_DEBUG_MLAG) {
+               vty_out(vty, "debug zebra mlag\n");
+               write++;
+       }
        if (IS_ZEBRA_DEBUG_PW) {
                vty_out(vty, "debug zebra pseudowires\n");
                write++;
@@ -633,4 +637,5 @@ void zebra_debug_init(void)
        install_element(CONFIG_NODE, &no_debug_zebra_rib_cmd);
        install_element(CONFIG_NODE, &no_debug_zebra_fpm_cmd);
        install_element(CONFIG_NODE, &no_debug_zebra_dplane_cmd);
+       install_element(CONFIG_NODE, &debug_zebra_mlag_cmd);
 }