From: Kit Rhett Aultman Date: Sun, 30 Jun 2024 16:41:08 +0000 (-0400) Subject: main: clean up logging X-Git-Url: https://git.kitaultman.com/?a=commitdiff_plain;h=6a7b263f9530e3d640467ca76a719be9c38caf18;p=riscv_baremetal.git main: clean up logging A practice I've used for years is to prefix all logging statements with my name in all-caps. These provisional messages can then be easily spotted and either kept (sans prefix) or removed. In my haste, though, I missed one. --- diff --git a/src/main.rs b/src/main.rs index 99941da..d322270 100644 --- a/src/main.rs +++ b/src/main.rs @@ -65,7 +65,7 @@ extern "C" fn entry() -> ! { // Init serial console use crate::console; console::init_console(); - println!("KIT-- hello works from println!"); + println!("Console init complete"); // Init heap use crate::heap;