aboutsummaryrefslogtreecommitdiff
path: root/src/system.rs
diff options
context:
space:
mode:
authorDavid Li <li.davidm96@gmail.com>2016-01-25 16:42:05 -0500
committerDavid Li <li.davidm96@gmail.com>2016-01-25 16:42:05 -0500
commitce1004f48b21eb3e54c90d65cd0234b722d581a5 (patch)
tree518f047d29f0b553f7f1a8012a3998ebc46379f3 /src/system.rs
parent65272ae2b094faff56b4aa74218bbfb397b8a94b (diff)
fix(Logging): set appropriate log level
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