VBOX: On a hypervisor detection failure failure dump all the logs to stderr, it would have quickly exposed a search path change on Mac OS X.

This commit is contained in:
Rom Walton 2015-10-13 14:17:01 -04:00
parent 2495f76bc6
commit f0998b64ef
1 changed files with 2 additions and 0 deletions

View File

@ -484,6 +484,7 @@ int main(int argc, char** argv) {
retval = pVM->initialize();
if (retval) {
vboxlog_msg("Could not detect VM Hypervisor. Rescheduling execution for a later date.");
pVM->dump_hypervisor_logs(true);
boinc_temporary_exit(86400, "Detection of VM Hypervisor failed.");
}
}
@ -495,6 +496,7 @@ int main(int argc, char** argv) {
retval = pVM->initialize();
if (retval) {
vboxlog_msg("Could not detect VM Hypervisor. Rescheduling execution for a later date.");
pVM->dump_hypervisor_logs(true);
boinc_temporary_exit(86400, "Detection of VM Hypervisor failed.");
}
#endif