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 <foxywang@tencent.com>
This commit is contained in:
Yi Wang
2025-05-26 11:42:43 +08:00
committed by Bo Chen
parent 20296e909a
commit 0a4169801b

View File

@@ -888,7 +888,7 @@ pub fn configure_vcpu(
}
for c in &cpuid {
info!("{}", c);
debug!("{}", c);
}
vcpu.set_cpuid2(&cpuid)