qemu: Report also domain name in error message when domain object wasn't found

Report the errors as:
Domain not found: no domain with matching uuid '41414141-4141-4141-4141-414141414141' (crashtest)
instead of:
Domain not found: no domain with matching uuid '41414141-4141-4141-4141-414141414141'
This commit is contained in:
Peter Krempa 2013-04-10 14:06:38 +02:00
parent 54a99ba867
commit 63b68f3cb4

View File

@ -199,7 +199,8 @@ qemuDomObjFromDomain(virDomainPtr domain)
if (!vm) {
virUUIDFormat(domain->uuid, uuidstr);
virReportError(VIR_ERR_NO_DOMAIN,
_("no domain with matching uuid '%s'"), uuidstr);
_("no domain with matching uuid '%s' (%s)"),
uuidstr, domain->name);
return NULL;
}