#logging-tracing #tracing-subscriber #logging #tracing #log

tracing-unwrap

Extension traits for logging failed unwraps to a tracing subscriber

6 releases (1 stable)

1.0.1 Mar 12, 2024
0.10.0 Nov 4, 2022
0.9.2 Aug 27, 2020
0.0.1 Aug 9, 2020

#96 in Debugging

Download history 2205/week @ 2024-01-20 2041/week @ 2024-01-27 1589/week @ 2024-02-03 1718/week @ 2024-02-10 2080/week @ 2024-02-17 1336/week @ 2024-02-24 1353/week @ 2024-03-02 1722/week @ 2024-03-09 1415/week @ 2024-03-16 2115/week @ 2024-03-23 1712/week @ 2024-03-30 1614/week @ 2024-04-06 1666/week @ 2024-04-13 1368/week @ 2024-04-20 1220/week @ 2024-04-27 1329/week @ 2024-05-04

5,961 downloads per month
Used in 10 crates (7 directly)

Apache-2.0/MIT

21KB
193 lines

tracing-unwrap

This crate provides .unwrap_or_log() and .expect_or_log() methods on Result and Option types that log failed unwraps to a tracing::Subscriber. This is useful when, for example, you are logging to syslog or a database, and you want your unwrap failures to show up there instead of being printed to stderr.

Its API aims to mirror Rust's std — see all the supported methods below. Failed unwraps are logged at a level of ERROR.

crates.io Documentation License

Usage

Add the following to your Cargo.toml:

tracing-unwrap = "1.0"

Next, bring the ResultExt and/or OptionExt traits into scope, and make use of the new logging methods.

use tracing_unwrap::ResultExt;

tracing_subscriber::fmt().init();
let not_great: Result<(), _> = Result::Err("not terrible");

// Logs the failed unwrap and panics
not_great.unwrap_or_log();

Methods

std method tracing-unwrap form trait
Result::ok() Result::ok_or_log() ResultExt
Result::unwrap() Result::unwrap_or_log() ResultExt
Result::expect(msg) Result::expect_or_log(msg) ResultExt
Result::unwrap_err() Result::unwrap_err_or_log() ResultExt
Result::expect_err(msg) Result::expect_err_or_log(msg) ResultExt
Option::unwrap() Option::unwrap_or_log() OptionExt
Option::expect(msg) Option::expect_or_log(msg) OptionExt
Option::unwrap_none() Option::unwrap_none_or_log() OptionExt
Option::expect_none(msg) Option::expect_none_or_log(msg) OptionExt

_†: no longer in std, see rust-lang/rust#62633_

Features

  • panic-quiet: causes failed unwraps to panic with an empty message.
    This feature is enabled by default — if you'd like the unwrap error message to also show in the panic message, disable default features in your Cargo.toml as follows:
    tracing-unwrap = { version = "1.0", default-features = false }

  • log-location: calls std::panic::Location::caller() to determine the location of a failed unwrap.

Dependencies

~420KB