diff options
| author | vdhingra <vdhingra@vmware.com> | 2019-08-23 05:28:43 -0700 |
|---|---|---|
| committer | vdhingra <vdhingra@vmware.com> | 2019-09-19 02:59:04 -0700 |
| commit | 14a4d9d0476bd950cfb7d3b94b050d15d1a8169d (patch) | |
| tree | 7f574b7038b2f129ad6b629a7fcace91c6c2350b /zebra/zebra_vrf.c | |
| parent | 16296beaa5ff0b51e1b9e88848206dcea5cd2a32 (diff) | |
Zebra: Rectifying the log messages.
This change addresses the following :
1. Ensures zlog_debug should be under DEBUG macro check
2. Ensures zlog_err and zlog_warn wherever applicable.
3. Removed few posivite logs from fpm handling, whose frequency is high.
Signed-off-by: vishaldhingra <vdhingra@vmware.com>
Diffstat (limited to 'zebra/zebra_vrf.c')
| -rw-r--r-- | zebra/zebra_vrf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zebra/zebra_vrf.c b/zebra/zebra_vrf.c index 72d0b6866d..4f1868311c 100644 --- a/zebra/zebra_vrf.c +++ b/zebra/zebra_vrf.c @@ -92,7 +92,7 @@ static int zebra_vrf_new(struct vrf *vrf) struct zebra_vrf *zvrf; if (IS_ZEBRA_DEBUG_EVENT) - zlog_info("VRF %s created, id %u", vrf->name, vrf->vrf_id); + zlog_debug("VRF %s created, id %u", vrf->name, vrf->vrf_id); zvrf = zebra_vrf_alloc(); vrf->info = zvrf; |
