mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-08-04 00:59:13 +00:00
pimd: zlog_info changed to zlog_notice for neighbor up/down event
Co-authored-by: Sarita Patra <saritap@vmware.com> Signed-off-by: Mobashshera Rasool <mrasool@vmware.com>
This commit is contained in:
parent
142774530a
commit
69b2df12bb
@ -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);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user