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:
Daniel P. Berrange
2010-08-24 14:19:12 +01:00
parent 97d982a748
commit ac7baddf9d
+1
View File
@@ -4074,6 +4074,7 @@ virConnectGetCapabilities (virConnectPtr conn)
ret = conn->driver->getCapabilities (conn);
if (!ret)
goto error;
DEBUG("conn=%p ret=%s", conn, ret);
return ret;
}