From 261e52e551086f1ae8d56fb7b0fc58a6afa0fc06 Mon Sep 17 00:00:00 2001 From: asonix Date: Fri, 10 Jul 2020 18:06:04 -0500 Subject: [PATCH] Better json errors --- src/error.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/error.rs b/src/error.rs index 8142967..69b8bb4 100644 --- a/src/error.rs +++ b/src/error.rs @@ -33,7 +33,7 @@ pub enum MyError { #[error("Couldn't sign string, {0}")] Rsa(rsa::errors::Error), - #[error("Couldn't do the json thing")] + #[error("Couldn't do the json thing, {0}")] Json(#[from] serde_json::Error), #[error("Couldn't build signing string, {0}")]