From 8499f2104edb030f923294c7e86898e5741ac19d Mon Sep 17 00:00:00 2001 From: Pim van Pelt Date: Sun, 3 Apr 2022 09:19:51 +0000 Subject: [PATCH] Clean up some debugging statements post-prune --- vpp/reconciler.py | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/vpp/reconciler.py b/vpp/reconciler.py index bad1f37..f351076 100644 --- a/vpp/reconciler.py +++ b/vpp/reconciler.py @@ -104,22 +104,6 @@ class Reconciler(): self.logger.warning("Could not prune PHYs from VPP") ret = False - ## Report on what is left in the configuration after pruning. - self.logger.debug("After pruning, the following config is left:") - for idx, lcp in self.vpp.config['lcps'].items(): - self.logger.debug("LCP[%d]: %s" % (idx, lcp)) - for ifname, iface in self.vpp.config['interface_names'].items(): - self.logger.debug("Interface[%s]: %s" % (ifname, iface)) - for idx, iface in self.vpp.config['interfaces'].items(): - self.logger.debug("Interface[%d]: %s" % (idx, iface)) - for idx, iface in self.vpp.config['bondethernets'].items(): - self.logger.debug("bondethernets[%d]: %s" % (idx, iface)) - for idx, iface in self.vpp.config['bondethernet_members'].items(): - self.logger.debug("bondethernet_members[%d]: %s" % (idx, iface)) - for idx, iface in self.vpp.config['vxlan_tunnels'].items(): - self.logger.debug("vxlan_tunnels[%d]: %s" % (idx, iface)) - for idx, iface in self.vpp.config['l2xcs'].items(): - self.logger.debug("l2xcs[%d]: %s" % (idx, iface)) for cli in self.cli['prune']: print(cli)