Skip to content

Commit fbf1e57

Browse files
committed
don't print out config at startup
I don't understand why, but on one of the terrariums, this is causing a crash loop with a message about a 'guru meditation error'. the other four terrariums don't have this issue
1 parent 79a4136 commit fbf1e57

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

code/esp32/src/oasis/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ async fn main(spawner: Spawner) {
7171
let _mounted_littlefs = mount_data_partition().expect("Mounting data partition");
7272
let cfg = match read_config_file() {
7373
Ok(cfg) => {
74-
log::info!("Successfully read config file from nvs: {cfg:?}");
74+
log::info!("Successfully read config file from nvs");
7575
cfg
7676
}
7777
Err(err) => {

0 commit comments

Comments
 (0)