mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-03-07 17:28:15 +00:00
Log return value for virConnectGetCapabilities
Enabling debug doesn't show the capabilities XML for a connection. Add an extra debug statement for the return value * src/libvirt.c: Enable debug logging of capabilities XML
This commit is contained in:
parent
97d982a748
commit
ac7baddf9d
@ -4074,6 +4074,7 @@ virConnectGetCapabilities (virConnectPtr conn)
|
|||||||
ret = conn->driver->getCapabilities (conn);
|
ret = conn->driver->getCapabilities (conn);
|
||||||
if (!ret)
|
if (!ret)
|
||||||
goto error;
|
goto error;
|
||||||
|
DEBUG("conn=%p ret=%s", conn, ret);
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user