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:
parent
8079c421bd
commit
35871fe96b
|
@ -135,11 +135,8 @@ class _CapsGuest(XMLBuilder):
|
||||||
"""
|
"""
|
||||||
mobjs = (domain and domain.machines) or self.machines
|
mobjs = (domain and domain.machines) or self.machines
|
||||||
for m in mobjs:
|
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:
|
if m.name == src and m.canonical == tgt:
|
||||||
log.debug("ok")
|
|
||||||
return True
|
return True
|
||||||
log.debug("not ok")
|
|
||||||
return False
|
return False
|
||||||
|
|
||||||
def is_kvm_available(self):
|
def is_kvm_available(self):
|
||||||
|
|
Loading…
Reference in New Issue