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-17 11:08:19 -04:00
parent 97d982a748
commit ac7baddf9d
1 changed files with 1 additions and 0 deletions

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;
}