diff --git a/src/arch/riscv64/kernel/systemtime.rs b/src/arch/riscv64/kernel/systemtime.rs index df7f6d0185..d75cfdd67b 100644 --- a/src/arch/riscv64/kernel/systemtime.rs +++ b/src/arch/riscv64/kernel/systemtime.rs @@ -1,7 +1,5 @@ -use log::warn; - /// Returns the current time in microseconds since UNIX epoch. pub fn now_micros() -> u64 { - warn!("time is currently stubbed"); + debug!("time is currently stubbed"); super::processor::get_timer_ticks() }