Skip to content

Commit

Permalink
Include debug error message for unspecified error (risc0#846)
Browse files Browse the repository at this point in the history
Fix debug error message for unknown error on the bonsai-rest-api-mock

Co-authored-by: Angelo Capossele <[email protected]>
  • Loading branch information
austinabell and capossele authored Sep 7, 2023
1 parent 3faa248 commit ed5bf68
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bonsai/rest-api-mock/src/prover.rs
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ impl Prover {
.write()?
.put_session(task.session_id.clone(), "FAILED".to_string()),
};
tracing::error!("Task {} failed! - {}", msg, err)
tracing::error!("Task {} failed! - {:?}", msg, err)
}
}
}
Expand Down

0 comments on commit ed5bf68

Please sign in to comment.