mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-08-15 13:27:53 +00:00
zebra: Reduce warn -> debug
During times of network trauma and when we are at large network scale the process_remote_macip_add function can issue a zlog_warn for a common occurrence. Modify the code to be a debug statement. This behavior is the same now as the process_remote_macip_del function Signed-off-by: Donald Sharp <sharpd@nvidia.com>
This commit is contained in:
parent
78695ce3a4
commit
34c9b28ba8
@ -1364,7 +1364,8 @@ void process_remote_macip_add(vni_t vni, struct ethaddr *macaddr,
|
||||
/* Locate EVPN hash entry - expected to exist. */
|
||||
zevpn = zebra_evpn_lookup(vni);
|
||||
if (!zevpn) {
|
||||
zlog_warn("Unknown VNI %u upon remote MACIP ADD", vni);
|
||||
if (IS_ZEBRA_DEBUG_VXLAN)
|
||||
zlog_debug("Unknown VNI %u upon remote MACIP ADD", vni);
|
||||
return;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user