diff --git a/libvirt/tests/src/passthrough/ap/libvirt_ap_passthrough_autostart.py b/libvirt/tests/src/passthrough/ap/libvirt_ap_passthrough_autostart.py index 176395a6a1..628f49b1e5 100644 --- a/libvirt/tests/src/passthrough/ap/libvirt_ap_passthrough_autostart.py +++ b/libvirt/tests/src/passthrough/ap/libvirt_ap_passthrough_autostart.py @@ -38,7 +38,7 @@ def _is_listed(): """Parameterless helper function to use with wait_for""" cmd = "mdevctl list -u %s" % uuid err, out = cmd_status_output(cmd, shell=True, session=session) - LOG.debug(err, out) + LOG.debug("mediated device status - {}, output - {}.".format(err, out)) return uuid in out if not wait_for(_is_listed, timeout=5): raise TestFail("Mediated device UUID(%s) not listed" % uuid)