kernel(detail): remove logging on memory load

pull/11/head
Erin 2023-11-11 13:58:52 +01:00
parent 2959e65ef9
commit 406a507f29
1 changed files with 0 additions and 1 deletions

View File

@ -15,7 +15,6 @@ impl hbvm::mem::Memory for Memory {
target: *mut u8,
count: usize,
) -> Result<(), hbvm::mem::LoadError> {
log::info!("Loading memory");
core::ptr::copy(addr.get() as *const u8, target, count);
Ok(())
}