From 2495fdc0e7634401cb9c85334a0b1b9532fe8012 Mon Sep 17 00:00:00 2001 From: Wei Liu Date: Thu, 5 Mar 2026 21:27:50 +0000 Subject: [PATCH] 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 --- cloud-hypervisor/src/main.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cloud-hypervisor/src/main.rs b/cloud-hypervisor/src/main.rs index b4d2bdf53..80cd50291 100644 --- a/cloud-hypervisor/src/main.rs +++ b/cloud-hypervisor/src/main.rs @@ -595,6 +595,8 @@ fn start_vmm(cmd_arguments: &ArgMatches) -> Result, Error> { } } + info!("{} starting", env!("BUILD_VERSION")); + let hypervisor = hypervisor::new().map_err(Error::CreateHypervisor)?; #[cfg(feature = "guest_debug")]