From 27465b613283cd3967ebe62440cb4c85a226f44d Mon Sep 17 00:00:00 2001 From: Jeremy Soller Date: Sun, 23 Nov 2025 07:41:09 -0700 Subject: [PATCH] Make CPU announcements debug level --- src/main.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main.rs b/src/main.rs index 78f58d0dba..453b76328a 100644 --- a/src/main.rs +++ b/src/main.rs @@ -184,7 +184,7 @@ fn kmain(bootstrap: Bootstrap) -> ! { //Initialize global schemes, such as `acpi:`. scheme::init_globals(); - info!("BSP: {} CPUs", cpu_count()); + debug!("BSP: {} CPUs", cpu_count()); debug!("Env: {:?}", ::core::str::from_utf8(bootstrap.env)); BOOTSTRAP.call_once(|| bootstrap); @@ -221,7 +221,7 @@ fn kmain_ap(cpu_id: crate::cpu_set::LogicalCpuId) -> ! { profiling::maybe_run_profiling_helper_forever(cpu_id); if !cfg!(feature = "multi_core") { - info!("AP {}: Disabled", cpu_id); + debug!("AP {}: Disabled", cpu_id); loop { unsafe { @@ -233,7 +233,7 @@ fn kmain_ap(cpu_id: crate::cpu_set::LogicalCpuId) -> ! { context::init(&mut token); - info!("AP {}", cpu_id); + debug!("AP {}", cpu_id); profiling::ready_for_profiling();