summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArd Biesheuvel <ardb@kernel.org>2023-10-11 11:40:47 +0200
committerArd Biesheuvel <ardb@kernel.org>2023-10-11 11:40:47 +0200
commit94dc89e2c2f60709c741c16620591c7be84a981f (patch)
tree7fa42a1f30fcabeb31ac4f46c006af2963e82c0f
parent1f2833888dc054f01052cba0d857c3b5f3891ce6 (diff)
downloadefilite-94dc89e2c2f60709c741c16620591c7be84a981f.tar.gz
fixup! fixup! WIP console
-rw-r--r--src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs
index accd4e9..badca17 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -221,7 +221,7 @@ extern "C" fn handle_exception(esr: u64, elr: u64, far: u64) -> ! {
#[panic_handler]
fn panic(info: &PanicInfo) -> ! {
- log::set_max_level(log::LevelFilter::Info);
+ log::set_max_level(log::LevelFilter::Error);
error!("{}\n", info);
loop {}
}