From 35871fe96b72fb42808344f3e4ce79542be0d1f4 Mon Sep 17 00:00:00 2001 From: Cole Robinson Date: Mon, 1 Aug 2022 06:00:13 -0400 Subject: [PATCH] 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 --- virtinst/capabilities.py | 3 --- 1 file changed, 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):