ckb-sentry-failure

Crates.iockb-sentry-failure
lib.rsckb-sentry-failure
version0.21.0
sourcesrc
created_at2020-12-16 05:22:24.095803
updated_at2020-12-16 05:22:24.095803
descriptionSentry integration for failure crate.
homepage
repositoryhttps://github.com/nervosnetwork/sentry-rust
max_upload_size
id323487
size10,112
ian (doitian)

documentation

README

Sentry Rust SDK: sentry-failure

Adds support for capturing Sentry errors from failure types.

Failure errors and Fail objects can be logged with the failure integration. This works really well if you use the failure::Error type or if you have failure::Fail objects that use the failure context internally to gain a backtrace.

Example

use sentry_failure::capture_error;
let result = match function_that_might_fail() {
    Ok(result) => result,
    Err(err) => {
        capture_error(&err);
        return Err(err);
    }
};

To capture fails and not errors use capture_fail.

Resources

License: Apache-2.0

Commit count: 735

cargo fmt