From 2b1287f4efc9263e1fe1e9e1ed66d026202fe49c Mon Sep 17 00:00:00 2001 From: Pim van Pelt Date: Tue, 12 Apr 2022 09:11:56 +0000 Subject: [PATCH] Remove spurious logging --- vpp/reconciler.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/vpp/reconciler.py b/vpp/reconciler.py index 0b6086f..495930e 100644 --- a/vpp/reconciler.py +++ b/vpp/reconciler.py @@ -259,18 +259,14 @@ class Reconciler(): return False if 'name' in config_iface['host'] and config_iface['host']['name'] != vpp_tap.host_if_name: - self.logger.info("TAP diff: hostname") return True if 'mtu' in config_iface['host'] and config_iface['host']['mtu'] != vpp_tap.host_mtu_size: return True if 'mac' in config_iface['host'] and config_iface['host']['mac'] != str(vpp_tap.host_mac_addr): - self.logger.info("TAP diff: mac") return True if 'bridge' in config_iface['host'] and config_iface['host']['bridge'] != vpp_tap.host_bridge: - self.logger.info("TAP diff: bridge") return True if 'namespace' in config_iface['host'] and config_iface['host']['namespace'] != vpp_tap.host_namespace: - self.logger.info("TAP diff: namespace") return True return False