mirror of https://github.com/BOINC/boinc.git
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:
parent
2495f76bc6
commit
f0998b64ef
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue