logerr 0.2.0

Seamless error type logging
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! # Default logging implementations
//!
//! Implements default logging for common error types.

#[cfg(all(feature = "generic", feature = "anyhow"))]
compile_error!("feature 'generic' and feature 'anyhow' cannot be used at the same time");

#[cfg(feature = "anyhow")]
mod anyhow;
#[cfg(feature = "generic")]
mod generic;