summaryrefslogtreecommitdiff
path: root/lib/vrf.c
diff options
context:
space:
mode:
authorDonald Sharp <sharpd@nvidia.com>2020-09-18 07:14:55 -0400
committerDonald Sharp <sharpd@nvidia.com>2020-09-18 07:14:55 -0400
commit0a822f99bfff45a28f1510d837902c5e5996c7f7 (patch)
treee222ee22db589f533693ef108060e76f1abb44ea /lib/vrf.c
parentc7384cf86a1673fbf8deb2689642e2d69b9f9993 (diff)
lib: Remove debug associated with vrf_get
The vrf_get function is called throughout the code base so much so that when you turn on vrf debugging it eclipses everything else to a degree that is completely unreasonable. Signed-off-by: Donald Sharp <sharpd@nvidia.com>
Diffstat (limited to 'lib/vrf.c')
-rw-r--r--lib/vrf.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/vrf.c b/lib/vrf.c
index 5755cc75f9..6e4c983c66 100644
--- a/lib/vrf.c
+++ b/lib/vrf.c
@@ -159,10 +159,6 @@ struct vrf *vrf_get(vrf_id_t vrf_id, const char *name)
struct vrf *vrf = NULL;
int new = 0;
- if (debug_vrf)
- zlog_debug("VRF_GET: %s(%u)", name == NULL ? "(NULL)" : name,
- vrf_id);
-
/* Nothing to see, move along here */
if (!name && vrf_id == VRF_UNKNOWN)
return NULL;