Skip to content

Commit

Permalink
fix(boards): replace println with debug
Browse files Browse the repository at this point in the history
  • Loading branch information
chrysn committed Mar 2, 2025
1 parent 3a80b74 commit c01261b
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions src/ariel-os-boards/espressif-esp32-devkitc/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#![no_std]

use ariel_os_debug::println;
use ariel_os_debug::log::debug;

pub fn init() {
println!("espressif-esp32-devkitc::init()");
debug!("espressif-esp32-devkitc::init()");
}
2 changes: 1 addition & 1 deletion src/ariel-os-boards/st-nucleo-f401re/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#![no_std]

pub fn init() {
ariel_os_debug::println!("boards::st-nucleo-f401re::init()");
ariel_os_debug::log::debug!("boards::st-nucleo-f401re::init()");
}
4 changes: 2 additions & 2 deletions src/ariel-os-boards/st-nucleo-h755zi-q/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#![no_std]

use ariel_os_debug::println;
use ariel_os_debug::log::debug;

pub fn init() {
println!("st-nucleo-h755zi-q::init()");
debug!("st-nucleo-h755zi-q::init()");
}
2 changes: 1 addition & 1 deletion src/ariel-os-boards/st-nucleo-wb55/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#![no_std]

pub fn init() {
ariel_os_debug::println!("boards::st-nucleo-wb55::init()");
ariel_os_debug::log::debug!("boards::st-nucleo-wb55::init()");
}
2 changes: 1 addition & 1 deletion src/ariel-os-boards/st-nucleo-wba55/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#![no_std]

pub fn init() {
ariel_os_debug::println!("boards::st-nucleo-wba55::init()");
ariel_os_debug::log::debug!("boards::st-nucleo-wba55::init()");
}

0 comments on commit c01261b

Please sign in to comment.