Merge pull request #7638 from donaldsharp/reduce_warn

zebra: Reduce warn -> debug
This commit is contained in:
Donatas Abraitis 2020-12-03 08:17:59 +02:00 committed by GitHub
commit c49042b407
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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;
}