We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d6cbad commit 190c4b3Copy full SHA for 190c4b3
crates/locked-app/src/lib.rs
@@ -30,8 +30,8 @@ pub type Result<T> = std::result::Result<T, Error>;
30
#[derive(Debug, thiserror::Error)]
31
pub enum Error {
32
/// An error propagated from the [`spin_core`] crate.
33
- #[error("spin core error: {0:#}")]
34
- CoreError(#[source] anyhow::Error),
+ #[error(transparent)]
+ CoreError(anyhow::Error),
35
/// An error from a [`DynamicHostComponent`].
36
#[error("host component error: {0:#}")]
37
HostComponentError(#[source] anyhow::Error),
0 commit comments