3个版本

0.1.2 2023年3月4日
0.1.1 2023年3月4日
0.1.0 2023年3月4日

#14#re-exported


error_hook 中使用

ISC 许可证

4KB

error_hook_attr

该库补充了 hook 宏属性,用于钩子错误转换(请通过功能 attribute 使用从 error_hook 重新导出的宏)。

示例

use error_hook::{self, hook};

#[hook(e => tracing::error!("{e}"))] // <-
#[tracing::instrument]
async fn test(a: i32, b: i32) -> error_hook::Result<i32> {
    a.checked_mul(b).ok_or(anyhow::anyhow!("overflow"))
}

#[tokio::main]
async fn main() -> anyhow::Result<()> {
    tracing_subscriber::fmt()
        .with_max_level(tracing::Level::INFO)
        .init();

    let ans = test(888888888, 888888888).await?;
    println!("{ans}");

    Ok(())
}

输出

2023-03-04T06:23:33.048087Z ERROR test{a=888888888 b=888888888}: example: overflow

lib.rs:

该库补充了 hook 宏属性,用于钩子错误转换(请通过功能 attribute 使用从 error_hook 重新导出的宏)。

依赖

~1.5MB
~36K SLoC