| Crates.io | ckb-sentry-error-chain |
| lib.rs | ckb-sentry-error-chain |
| version | 0.21.0 |
| created_at | 2020-12-16 05:21:03.990796+00 |
| updated_at | 2020-12-16 05:21:03.990796+00 |
| description | Sentry integration that allows capturing error-chain errors. |
| homepage | |
| repository | https://github.com/nervosnetwork/sentry-rust |
| max_upload_size | |
| id | 323486 |
| size | 6,623 |
Adds support for the error-chain crate.
Errors created by the error-chain crate can be logged with the
error_chain integration.
use sentry_error_chain::{capture_error_chain, ErrorChainIntegration};
let _sentry =
sentry::init(sentry::ClientOptions::default().add_integration(ErrorChainIntegration));
let result = match function_that_might_fail() {
Ok(result) => result,
Err(err) => {
capture_error_chain(&err);
return Err(err);
}
};
License: Apache-2.0