bhyve: caps: Log error message when CPU init fails

virBhyveCapsInitCPU will raise a libvirt error; even though we treat
it as non-fatal we should log the actual message.
This commit is contained in:
Cole Robinson 2016-03-18 18:33:05 -04:00
parent 2dabe2e03e
commit c770472c48
1 changed files with 1 additions and 1 deletions

View File

@ -97,7 +97,7 @@ virBhyveCapsBuild(void)
goto error;
if (virBhyveCapsInitCPU(caps, virArchFromHost()) < 0)
VIR_WARN("Failed to get host CPU");
VIR_WARN("Failed to get host CPU: %s", virGetLastErrorMessage());
return caps;