some info log is actually debug one

This commit is contained in:
Quentin De Coninck 2020-07-08 15:02:30 +02:00
parent dc501e3d83
commit b3c1c70a3b

View File

@ -545,7 +545,7 @@ class TopoConfig(object):
logging.info("Disable TSO on all interfaces of all nodes") 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 node in [self.topo.get_host(n) for n in self.topo.topo_builder.net]:
for intf in self.topo.get_interface_names(node): for intf in self.topo.get_interface_names(node):
logging.info("Disable TSO on interface {}".format(intf)) logging.debug("Disable TSO on interface {}".format(intf))
cmd = "ethtool -K {} tso off".format(intf) cmd = "ethtool -K {} tso off".format(intf)
logging.debug(cmd) logging.debug(cmd)
self.topo.command_to(node, cmd) self.topo.command_to(node, cmd)