From 3c9df5859284292ea2c7843d7a09ae79bc9b9607 Mon Sep 17 00:00:00 2001 From: Quentin De Coninck Date: Wed, 8 Jul 2020 14:42:32 +0200 Subject: [PATCH] log less in INFO, move instead to DEBUG --- core/topo.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/topo.py b/core/topo.py index 6ecb48f..48fcf92 100644 --- a/core/topo.py +++ b/core/topo.py @@ -542,11 +542,12 @@ def disable_tso(self): """ Disable TSO on all interfaces """ + logging.info("Disable TSO on all interfaces of all nodes") for node in [self.topo.get_host(n) for n in self.topo.topo_builder.net]: for intf in self.topo.get_interface_names(node): logging.info("Disable TSO on interface {}".format(intf)) cmd = "ethtool -K {} tso off".format(intf) - logging.info(cmd) + logging.debug(cmd) self.topo.command_to(node, cmd) def run_netem_at(self):