From 6a7b263f9530e3d640467ca76a719be9c38caf18 Mon Sep 17 00:00:00 2001 From: Kit Rhett Aultman Date: Sun, 30 Jun 2024 12:41:08 -0400 Subject: [PATCH] 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. --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.34.1