Skip to content

kellpossible/sentry-eyre

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 

Repository files navigation

Sentry Rust SDK: sentry-anyhow

Adds support for capturing Sentry errors from anyhow::Error.

Example

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

Resources

License: Apache-2.0

About

Sentry integration for eyre.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages