diff --git a/apps/system/components/kata-os-common/src/model/feature/dynamic_alloc.rs b/apps/system/components/kata-os-common/src/model/feature/dynamic_alloc.rs index 3aa0be3..13d3e5c 100644 --- a/apps/system/components/kata-os-common/src/model/feature/dynamic_alloc.rs +++ b/apps/system/components/kata-os-common/src/model/feature/dynamic_alloc.rs @@ -115,7 +115,7 @@ impl<'a> KataOsModel<'a> { // CNode can receive the untypeds since we must move // 'em from the rootserver (since they are "derived"). // XXX maybe just complain & ignore - info!("Found bootinfo Frame at {}", obj_id); + trace!("Found bootinfo Frame at {}", obj_id); assert!(!is_objid_valid(bootinfo_frame)); bootinfo_frame = obj_id; } diff --git a/apps/system/components/kata-os-common/src/model/mod.rs b/apps/system/components/kata-os-common/src/model/mod.rs index ec48826..d80aeaf 100644 --- a/apps/system/components/kata-os-common/src/model/mod.rs +++ b/apps/system/components/kata-os-common/src/model/mod.rs @@ -19,7 +19,7 @@ use core::mem::size_of; use core::ptr; use cpio::CpioNewcReader; use cstr_core::CStr; -use log::{debug, info, error, trace}; +use log::{debug, error, trace}; use smallvec::SmallVec; use static_assertions::*; @@ -944,7 +944,7 @@ impl<'a> KataOsModel<'a> { .max_by_key(|slot| slot.slot) .map_or(0, |slot| slot.slot + 1); - info!("Hand-off {} untypeds from {} to {}", + trace!("Hand-off {} untypeds from {} to {}", num_untypeds, self.bootinfo.untyped.start, dest_start);