Skip to content

Commit

Permalink
Merge pull request #1382 from hermit-os/downgrade-log-level
Browse files Browse the repository at this point in the history
fix(x86_64): downgrade log level of page unmap
  • Loading branch information
mkroening committed Sep 12, 2024
2 parents 6cdb5a0 + a0a3f77 commit 858860b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/arch/x86_64/mm/paging.rs
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ where
// FIXME: Some sentinel pages around stacks are supposed to be unmapped.
// We should handle this case there instead of here.
Err(UnmapError::PageNotMapped) => {
info!("Tried to unmap {page:?}, which was not mapped.")
debug!("Tried to unmap {page:?}, which was not mapped.")
}
Err(err) => panic!("{err:?}"),
}
Expand Down

0 comments on commit 858860b

Please sign in to comment.