From ce1004f48b21eb3e54c90d65cd0234b722d581a5 Mon Sep 17 00:00:00 2001 From: David Li Date: Mon, 25 Jan 2016 16:42:05 -0500 Subject: fix(Logging): set appropriate log level --- src/system.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/system.rs') 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 { - 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 { - 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 -- cgit v1.2.3