log: reduce message verbosity

This commit is contained in:
2025-07-27 13:43:41 +03:00
parent e0b6290a54
commit 51b72aa4d8
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -189,7 +189,7 @@ pub fn load_elf_from_file<F: Read + Seek>(
let (image_load_base, ip_offset) =
elf_load_address(aslr, elf.ehdr.e_type, vaddr_min, image_load_size);
log::info!(
log::debug!(
"Loading ELF virtual {:#x?} -> real {:#x?}",
vaddr_min..vaddr_max,
image_load_base..image_load_base + image_load_size
+1 -1
View File
@@ -183,7 +183,7 @@ where
MapAttributes::USER_WRITE | MapAttributes::USER_READ | MapAttributes::NON_GLOBAL,
)?;
log::info!(
log::debug!(
"stack: {:#x}..{:#x}",
virt_stack_base,
virt_stack_base + USER_STACK_PAGES * 0x1000