Skip to content

Commit

Permalink
fix: Include error message on IO error
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobsvante committed Nov 1, 2021
1 parent 5cbcbcb commit 8cc4cef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ pub enum Error {
HttpRequestError(u16, String),
#[error("{0}")]
HttpTransportError(String),
#[error("IO error")]
#[error("IO error: {0}")]
IOError(#[from] std::io::Error),
#[error("Serde error")]
SerializationError(#[from] serde_json::Error),
Expand Down

0 comments on commit 8cc4cef

Please sign in to comment.