Use error! instead of println! when panicking

This commit is contained in:
Yifan Wu 2023-03-28 23:42:48 +08:00
parent 386d783525
commit cf2121d801

View File

@ -2,18 +2,19 @@
use crate::sbi::shutdown;
use core::panic::PanicInfo;
use log::*;
#[panic_handler]
fn panic(info: &PanicInfo) -> ! {
if let Some(location) = info.location() {
println!(
error!(
"[kernel] Panicked at {}:{} {}",
location.file(),
location.line(),
info.message().unwrap()
);
} else {
println!("[kernel] Panicked: {}", info.message().unwrap());
error!("[kernel] Panicked: {}", info.message().unwrap());
}
shutdown(true)
}