summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Stapp <mjs@voltanet.io>2019-11-01 12:13:00 -0400
committerGitHub <noreply@github.com>2019-11-01 12:13:00 -0400
commit7a6fc8774ddf74df312c7d4ce0bbdbb5ac01c5fa (patch)
tree5b9c00d87bc1f5c4658c1d835f7020aa49898ac7
parent845e689ea03766412f4d25312cefd05e6fdba58a (diff)
parent889a75be0d99cb62609cd1ebba28328d452282d6 (diff)
Merge pull request #5263 from donaldsharp/pim_excessive_warnings
pimd: Do not spew a million warnings
-rw-r--r--pimd/pim_ifchannel.c12
1 files changed, 7 insertions, 5 deletions
diff --git a/pimd/pim_ifchannel.c b/pimd/pim_ifchannel.c
index 66e64cefa0..4ca38f10d1 100644
--- a/pimd/pim_ifchannel.c
+++ b/pimd/pim_ifchannel.c
@@ -191,11 +191,13 @@ void pim_ifchannel_delete(struct pim_ifchannel *ch)
pim_upstream_del(pim_ifp->pim, ch->upstream,
__PRETTY_FUNCTION__);
- else
- zlog_warn("%s: Avoiding deletion of upstream with ref_count %d "
- "from ifchannel(%s): %s", __PRETTY_FUNCTION__,
- ch->upstream->ref_count, ch->interface->name,
- ch->sg_str);
+ else {
+ if (PIM_DEBUG_PIM_TRACE)
+ zlog_debug("%s: Avoiding deletion of upstream with ref_count %d "
+ "from ifchannel(%s): %s", __PRETTY_FUNCTION__,
+ ch->upstream->ref_count, ch->interface->name,
+ ch->sg_str);
+ }
ch->upstream = NULL;