logger-rs 0.1.0

Logging utilities for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
/// A logging utility library for Rust
/// ## Example:
/// ```rust
/// let logger = Logger::default();
/// logger.warn("this is a warning!");
/// // or using a custom style and bridge
/// let logger = Logger::new()
///                  .style(Box::new(Arrow::default()))
///                  .bridge(Box::new(Console::default()))
/// ```
pub mod logger;
pub mod style;
pub use logger::*;