summaryrefslogtreecommitdiff
path: root/virtinst
diff options
context:
space:
mode:
authorCole Robinson <crobinso@redhat.com>2022-08-01 06:00:13 -0400
committerCole Robinson <crobinso@redhat.com>2022-08-01 06:04:48 -0400
commit35871fe96b72fb42808344f3e4ce79542be0d1f4 (patch)
treec9cec4a2573d306c713005d254a5c9a83cbf2b3b /virtinst
parent8079c421bd8b377c14af4d094818a3ff589c03bb (diff)
downloadvirt-manager-35871fe96b72fb42808344f3e4ce79542be0d1f4.tar.gz
capabilities: Remove noisy alias debugging
our debugging output is not this fine grained, so this crowds out more interesting messages Signed-off-by: Cole Robinson <crobinso@redhat.com>
Diffstat (limited to 'virtinst')
-rw-r--r--virtinst/capabilities.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/virtinst/capabilities.py b/virtinst/capabilities.py
index aa8fbfda..533c0d9a 100644
--- a/virtinst/capabilities.py
+++ b/virtinst/capabilities.py
@@ -135,11 +135,8 @@ class _CapsGuest(XMLBuilder):
"""
mobjs = (domain and domain.machines) or self.machines
for m in mobjs:
- log.debug("Check %s == %s %s == %s", m.name, src, m.canonical, tgt)
if m.name == src and m.canonical == tgt:
- log.debug("ok")
return True
- log.debug("not ok")
return False
def is_kvm_available(self):