Skip to content

Commit 5d4cf73

Browse files
authored
fix: Remove 'anyhow:' prefix that was added to all messages (#67)
1 parent 348c300 commit 5d4cf73

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

yerpc/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ impl From<anyhow::Error> for Error {
269269
fn from(error: anyhow::Error) -> Self {
270270
Self {
271271
code: -1,
272-
message: format!("anyhow: {:#}", error),
272+
message: format!("{:#}", error),
273273
data: None,
274274
}
275275
}

0 commit comments

Comments
 (0)