From 0a4169801b40ab408d770522120096527255902e Mon Sep 17 00:00:00 2001 From: Yi Wang Date: Mon, 26 May 2025 11:42:43 +0800 Subject: [PATCH] arch: x86_64: lower the cpuid log level There are a little many cpuid logs now. When starting a vm with 64 vcpu, we can get more than four thousand INFO messages: cat vm1.log |grep 'arch/src/x86_64/mod.rs:891' |wc -l 4352 Signed-off-by: Yi Wang --- arch/src/x86_64/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/src/x86_64/mod.rs b/arch/src/x86_64/mod.rs index 4ee69075e..d6723330e 100644 --- a/arch/src/x86_64/mod.rs +++ b/arch/src/x86_64/mod.rs @@ -888,7 +888,7 @@ pub fn configure_vcpu( } for c in &cpuid { - info!("{}", c); + debug!("{}", c); } vcpu.set_cpuid2(&cpuid)