1
0
Fork 0
forked from AbleOS/ableos

kernel(detail): remove logging on memory load

This commit is contained in:
Erin 2023-11-11 13:58:52 +01:00
parent 0af4758a45
commit 4e9b75a517

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(())
}