err_trail 0.8.4

Add context to errors through logging
1
2
3
4
5
6
7
8
9
10
11
#![cfg_attr(not(any(test, feature = "tracing", feature = "log")), no_std)]

#[cfg(any(feature = "tracing", feature = "log", feature = "stub"))]
mod tracing_log_stub;
#[cfg(any(feature = "tracing", feature = "log", feature = "stub"))]
pub use  tracing_log_stub::*;

#[cfg(feature = "defmt")]
mod defmt;
#[cfg(feature = "defmt")]
pub use defmt::*;