Skip to content

Commit

Permalink
Improve visibility of user flow errors in logs
Browse files Browse the repository at this point in the history
  • Loading branch information
zargony committed Oct 27, 2024
1 parent 6eae898 commit c8dff83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion firmware/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ async fn main(spawner: Spawner) {
Err(error::Error::UserTimeout) => info!("Timeout waiting for user, starting over..."),
// Display error to user and start over again
Err(err) => {
error!("Error: {:?}", err);
error!("User flow error: {:?}", err);
let _ = ui.show_error(&err, true).await;
}
}
Expand Down

0 comments on commit c8dff83

Please sign in to comment.