vmm: Print out the version information at launch

It is useful to see this information in the log while debugging issues.

Signed-off-by: Wei Liu <liuwe@microsoft.com>
This commit is contained in:
Wei Liu
2026-03-05 21:27:50 +00:00
committed by Wei Liu
parent 1f93fef66f
commit 2495fdc0e7

View File

@@ -595,6 +595,8 @@ fn start_vmm(cmd_arguments: &ArgMatches) -> Result<Option<String>, Error> {
}
}
info!("{} starting", env!("BUILD_VERSION"));
let hypervisor = hypervisor::new().map_err(Error::CreateHypervisor)?;
#[cfg(feature = "guest_debug")]