Skip to content

Commit

Permalink
Merge pull request #1252 from stlankes/debug
Browse files Browse the repository at this point in the history
reduce the number of log messages
  • Loading branch information
stlankes authored Jun 5, 2024
2 parents 285f28a + ecd8a67 commit 50d5cd0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions src/arch/x86_64/kernel/processor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -838,8 +838,7 @@ pub fn configure() {

if supports_fsgs() {
cr4.insert(Cr4::CR4_ENABLE_FSGSBASE);
#[cfg(feature = "fsgsbase")]
info!("Enable FSGSBASE support");
debug!("Enable FSGSBASE support");
}
#[cfg(feature = "fsgsbase")]
if !supports_fsgs() {
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ fn application_processor_main() -> ! {
#[cfg(not(target_arch = "riscv64"))]
scheduler::add_current_core();

info!("Entering idle loop for application processor");
debug!("Entering idle loop for application processor");

synch_all_cores();
crate::executor::init();
Expand Down

0 comments on commit 50d5cd0

Please sign in to comment.