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>
This commit is contained in:
Cole Robinson 2022-08-01 06:00:13 -04:00
parent 8079c421bd
commit 35871fe96b
1 changed files with 0 additions and 3 deletions

View File

@ -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):