diff options
| author | jacqueline <me@jacqueline.id.au> | 2023-05-22 16:52:50 +1000 |
|---|---|---|
| committer | jacqueline <me@jacqueline.id.au> | 2023-05-22 16:52:50 +1000 |
| commit | 82830f995c561567c84b8ea74bc270ae0b488d30 (patch) | |
| tree | 8e7eeea97b9358156ef33d4650f5676e03b5fbd1 /src/system_fsm/booting.cpp | |
| parent | da977aaa3feb397c426563da8897d51ebeba8d1f (diff) | |
| download | tangara-fw-82830f995c561567c84b8ea74bc270ae0b488d30.tar.gz | |
Fix some logging, add transition to missing storage
Diffstat (limited to 'src/system_fsm/booting.cpp')
| -rw-r--r-- | src/system_fsm/booting.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/system_fsm/booting.cpp b/src/system_fsm/booting.cpp index a2a920c8..d9ee6e45 100644 --- a/src/system_fsm/booting.cpp +++ b/src/system_fsm/booting.cpp @@ -74,7 +74,7 @@ auto Booting::entry() -> void { } auto Booting::react(const BootComplete& ev) -> void { - ESP_LOGE(kTag, "bootup completely successfully"); + ESP_LOGI(kTag, "bootup completely successfully"); // It's possible that the SAMD is currently exposing the SD card as a USB // device. Make sure we don't immediately try to claim it. if (sSamd && sSamd->ReadUsbMscStatus() == |
