Crate lyte_observer
Source pub use prelude::Error;pub use prelude::crates::*;
- prelude
- Report
- The core error reporting type of the library, a wrapper around a dynamic error reporting type.
- observe
- Sets up
color_eyre and a basic logging tracing subscriber with the
specified filter_str. Everything a growing application needs. - observe_info
- Analagous to
observe("info") - trace_crate
- Analagous to
observe(&format!("{}=trace,info", crate_name)) - very_verbosely_trace_everything⚠
- This function is marked unsafe because it’s very likely you do not want to
do this.
- Result
- type alias for
Result<T, Report>