aboutsummaryrefslogtreecommitdiff
path: root/src/system.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/system.rs')
-rw-r--r--src/system.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/system.rs b/src/system.rs
index f0f3095..158f3ff 100644
--- a/src/system.rs
+++ b/src/system.rs
@@ -62,14 +62,14 @@ impl<'a> SyscallHandler<'a> {
}
fn enable_secondary(&mut self, core_id: usize) -> Option<Trap> {
- debug!("[syscall] [memory] Secondary cache enabled for core {}",
+ info!("[syscall] [memory] Secondary cache enabled for core {}",
core_id);
self.caches[core_id].borrow_mut().enable_secondary();
None
}
fn disable_secondary(&mut self, core_id: usize) -> Option<Trap> {
- debug!("[syscall] [memory] Secondary cache disabled for core {}",
+ info!("[syscall] [memory] Secondary cache disabled for core {}",
core_id);
self.caches[core_id].borrow_mut().disable_secondary();
None