]> git.puffer.fish Git - mirror/frr.git/commitdiff
pimd: zlog_info changed to zlog_notice for neighbor up/down event 9175/head
authorgithub login name <ranjany@vmware.com>
Mon, 5 Jul 2021 11:42:42 +0000 (04:42 -0700)
committermergify-bot <noreply@mergify.io>
Sun, 25 Jul 2021 12:23:19 +0000 (12:23 +0000)
Co-authored-by: Sarita Patra <saritap@vmware.com>
Signed-off-by: Mobashshera Rasool <mrasool@vmware.com>
(cherry picked from commit 69b2df12bb54f5a776dc40bb4b360a152b2cc9c8)

pimd/pim_neighbor.c

index 48b1a30f2d8c4bb9f6a6d78c69ef9c0a8ad0aaa7..571173c62a2478e5cbddacca7e4b15351aa5d292 100644 (file)
@@ -350,8 +350,8 @@ pim_neighbor_new(struct interface *ifp, struct in_addr source_addr,
                           __func__, src_str, ifp->name);
        }
 
-       zlog_info("PIM NEIGHBOR UP: neighbor %s on interface %s", src_str,
-                 ifp->name);
+       zlog_notice("PIM NEIGHBOR UP: neighbor %s on interface %s", src_str,
+                   ifp->name);
 
        if (neigh->propagation_delay_msec
            > pim_ifp->pim_neighbors_highest_propagation_delay_msec) {
@@ -616,8 +616,8 @@ void pim_neighbor_delete(struct interface *ifp, struct pim_neighbor *neigh,
        assert(pim_ifp);
 
        pim_inet4_dump("<src?>", neigh->source_addr, src_str, sizeof(src_str));
-       zlog_info("PIM NEIGHBOR DOWN: neighbor %s on interface %s: %s", src_str,
-                 ifp->name, delete_message);
+       zlog_notice("PIM NEIGHBOR DOWN: neighbor %s on interface %s: %s",
+                   src_str, ifp->name, delete_message);
 
        THREAD_OFF(neigh->t_expire_timer);