diff options
| author | Donald Sharp <sharpd@cumulusnetworks.com> | 2020-08-04 14:41:00 -0400 | 
|---|---|---|
| committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2020-08-04 14:41:00 -0400 | 
| commit | 3bd61c04936a7a8a60c96fee15d36dd7763deb13 (patch) | |
| tree | 23b89bb78dd5ee52a69118d665c5f373cade5cd3 /zebra/zapi_msg.c | |
| parent | aaf0d79655a612e5734970d16a9d7b4480edaf3e (diff) | |
zebra: When debugging route notifications use string instead of number
Current behavior:
eva# show mem
2020/08/04 18:07:38 ZEBRA: Not Notifying Owner: 2 about prefix 3.3.3.3/32(254) 2 vrf: 0
Fix it to show:
2020/08/04 18:07:38 ZEBRA: Not Notifying Owner: connected about prefix 3.3.3.3/32(254) 2 vrf: 0
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'zebra/zapi_msg.c')
| -rw-r--r-- | zebra/zapi_msg.c | 14 | 
1 files changed, 8 insertions, 6 deletions
diff --git a/zebra/zapi_msg.c b/zebra/zapi_msg.c index 33972681f8..2ca3e82fac 100644 --- a/zebra/zapi_msg.c +++ b/zebra/zapi_msg.c @@ -729,9 +729,10 @@ static int route_notify_internal(const struct prefix *p, int type,  			char buff[PREFIX_STRLEN];  			zlog_debug( -				"Not Notifying Owner: %u about prefix %s(%u) %d vrf: %u", -				type, prefix2str(p, buff, sizeof(buff)), -				table_id, note, vrf_id); +				"Not Notifying Owner: %s about prefix %s(%u) %d vrf: %u", +				zebra_route_string(type), +				prefix2str(p, buff, sizeof(buff)), table_id, +				note, vrf_id);  		}  		return 0;  	} @@ -739,9 +740,10 @@ static int route_notify_internal(const struct prefix *p, int type,  	if (IS_ZEBRA_DEBUG_PACKET) {  		char buff[PREFIX_STRLEN]; -		zlog_debug("Notifying Owner: %u about prefix %s(%u) %d vrf: %u", -			   type, prefix2str(p, buff, sizeof(buff)), -			   table_id, note, vrf_id); +		zlog_debug("Notifying Owner: %s about prefix %s(%u) %d vrf: %u", +			   zebra_route_string(type), +			   prefix2str(p, buff, sizeof(buff)), table_id, note, +			   vrf_id);  	}  	s = stream_new(ZEBRA_MAX_PACKET_SIZ);  | 
