mirror of https://gitee.com/openkylin/libvirt.git
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:
parent
54a99ba867
commit
63b68f3cb4
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue