this post was submitted on 11 Jan 2024
2 points (100.0% liked)
Rust
5346 readers
1 users here now
Welcome to the Rust community! This is a place to discuss about the Rust programming language.
Wormhole
Credits
- The icon is a modified version of the official rust logo (changing the colors to a gradient and black background)
founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
If you're not familiar with the
tracing
crate, give theinstrument
page a read. You may find the#[instrument(err)]
part particularly useful.As for the errors themselves, if you're using
thiserror
(you should be), then the variants in your error enum would/should contain the relevant context data. And the chain of errors would be tracked viasource
/#[source]
fields, as explained in the crate docs. You can see such chains if you useanyhow
in your application code.