main: clean up logging
authorKit Rhett Aultman <kit@kitaultman.com>
Sun, 30 Jun 2024 16:41:08 +0000 (12:41 -0400)
committerKit Rhett Aultman <kit@kitaultman.com>
Mon, 22 Jul 2024 03:21:31 +0000 (23:21 -0400)
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

index 99941dadb378ac01af9b79c18837f938da322b78..d322270ec938ce51cd414e1461c2f006f3c58ca8 100644 (file)
@@ -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;