bgpd: Remove misleading 'NOTIFICATION' string from End-of-RIB log

'NOTIFICATION' string in this message incorrectly implies a BGP
Notification message was the cause of this log. Removing it to
reduce confusion and replacing with function name.

Signed-off-by: Trey Aspelund <taspelund@cumulusnetworks.com>
This commit is contained in:
Trey Aspelund 2019-12-18 15:58:26 -05:00
parent a0729ec48d
commit a0e89d545b

View File

@ -1658,10 +1658,11 @@ static int bgp_update_receive(struct peer *peer, bgp_size_t size)
if (peer->nsf[afi][safi]) if (peer->nsf[afi][safi])
bgp_clear_stale_route(peer, afi, safi); bgp_clear_stale_route(peer, afi, safi);
zlog_info("%%NOTIFICATION: rcvd End-of-RIB for %s from %s in vrf %s", zlog_info(
get_afi_safi_str(afi, safi, false), peer->host, "%s: rcvd End-of-RIB for %s from %s in vrf %s",
vrf ? vrf->name : VRF_DEFAULT_NAME); __func__, get_afi_safi_str(afi, safi, false),
} peer->host, vrf ? vrf->name : VRF_DEFAULT_NAME);
}
} }
/* Everything is done. We unintern temporary structures which /* Everything is done. We unintern temporary structures which