summaryrefslogtreecommitdiff
path: root/virtinst/guest.py
diff options
context:
space:
mode:
authorCole Robinson <crobinso@redhat.com>2019-06-11 14:46:32 -0400
committerCole Robinson <crobinso@redhat.com>2019-06-11 17:55:09 -0400
commitecb60c30620c596df15a2f929b7ba683becc333c (patch)
tree8a04d07a2ae0037340ffff6064a6adfa074f00d3 /virtinst/guest.py
parent034d11218146d73028535c29e045c39b8212e1ff (diff)
downloadvirt-manager-ecb60c30620c596df15a2f929b7ba683becc333c.tar.gz
Drop use of logging.info
Just use logging.debug in these random places
Diffstat (limited to 'virtinst/guest.py')
-rw-r--r--virtinst/guest.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/virtinst/guest.py b/virtinst/guest.py
index 6686e104..9828f814 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") %