VBOX: Add some text about detecting the heartbeat configuration parameters

This commit is contained in:
Rom Walton 2016-02-10 15:03:39 -05:00
parent 01503278af
commit c61e3090ea
1 changed files with 6 additions and 0 deletions

View File

@ -618,6 +618,12 @@ int main(int argc, char** argv) {
// //
vboxlog_msg("Detected: Minimum checkpoint interval (%f seconds)", pVM->minimum_checkpoint_interval); vboxlog_msg("Detected: Minimum checkpoint interval (%f seconds)", pVM->minimum_checkpoint_interval);
// Record what the minimum heartbeat interval is.
//
if (pVM->heartbeat_filename.size()) {
vboxlog_msg("Detected: Heatbeat check (file: '$s' every %f seconds)", pVM->heartbeat_filename.c_str(), pVM->minimum_heartbeat_interval);
}
// Validate whatever configuration options we can // Validate whatever configuration options we can
// //
if (pVM->enable_shared_directory) { if (pVM->enable_shared_directory) {