diff --git a/virtManager/domain.py b/virtManager/domain.py index 8daf637ef..3c0f224d3 100644 --- a/virtManager/domain.py +++ b/virtManager/domain.py @@ -981,7 +981,7 @@ class vmmDomain(vmmLibvirtObject): self._backend.setVcpus(vcpus) if memory != _SENTINEL: - logging.info("Hotplugging curmem=%s maxmem=%s for VM '%s'", + logging.debug("Hotplugging curmem=%s maxmem=%s for VM '%s'", memory, maxmem, self.get_name()) actual_cur = self.get_memory() diff --git a/virtManager/netlist.py b/virtManager/netlist.py index 316d941e8..2fc72e4bd 100644 --- a/virtManager/netlist.py +++ b/virtManager/netlist.py @@ -307,7 +307,7 @@ class vmmNetworkList(vmmGObjectUI): # Try to start the network try: netobj.start() - logging.info("Started network '%s'", devname) + logging.debug("Started network '%s'", devname) except Exception as e: return self.err.show_err(_("Could not start virtual network " "'%s': %s") % (devname, str(e))) diff --git a/virtinst/guest.py b/virtinst/guest.py index 6686e104f..9828f8145 100644 --- a/virtinst/guest.py +++ b/virtinst/guest.py @@ -93,10 +93,10 @@ class Guest(XMLBuilder): try: logging.debug("Explicitly replacing guest '%s'", name) if vm.ID() != -1: - logging.info("Destroying guest '%s'", name) + logging.debug("Destroying guest '%s'", name) vm.destroy() - logging.info("Undefining guest '%s'", name) + logging.debug("Undefining guest '%s'", name) vm.undefine() except libvirt.libvirtError as e: raise RuntimeError(_("Could not remove old vm '%s': %s") %