diff options
| author | Donald Sharp <sharpd@nvidia.com> | 2020-09-21 07:55:36 -0400 | 
|---|---|---|
| committer | Donald Sharp <sharpd@nvidia.com> | 2020-09-21 07:55:36 -0400 | 
| commit | 13c5f95ed86513829161fce19226d389a7ed31b0 (patch) | |
| tree | be82e9982effaa5f502dc365fbae5d88fbe73506 /ripd/rip_interface.c | |
| parent | 1f79037b72f0ec93153f9505a11bce9812429993 (diff) | |
ripd, ripngd: info -> debug
There are a couple info messages in rip/ripng that really should
be debugs.  Modify code to be so.
Signed-off-by: Donald Sharp <sharpd@nvidia.com>
Diffstat (limited to 'ripd/rip_interface.c')
| -rw-r--r-- | ripd/rip_interface.c | 9 | 
1 files changed, 5 insertions, 4 deletions
diff --git a/ripd/rip_interface.c b/ripd/rip_interface.c index 6ea657401f..aab756aee9 100644 --- a/ripd/rip_interface.c +++ b/ripd/rip_interface.c @@ -427,10 +427,11 @@ static int rip_ifp_destroy(struct interface *ifp)  		rip_if_down(ifp);  	} -	zlog_info( -		"interface delete %s vrf %s(%u) index %d flags %#llx metric %d mtu %d", -		ifp->name, VRF_LOGNAME(vrf), ifp->vrf_id, ifp->ifindex, -		(unsigned long long)ifp->flags, ifp->metric, ifp->mtu); +	if (IS_RIP_DEBUG_ZEBRA) +		zlog_debug( +			"interface delete %s vrf %s(%u) index %d flags %#llx metric %d mtu %d", +			ifp->name, VRF_LOGNAME(vrf), ifp->vrf_id, ifp->ifindex, +			(unsigned long long)ifp->flags, ifp->metric, ifp->mtu);  	return 0;  }  | 
