xlog/
lib.rs

1//! xlog-rs
2//!
3//! A simple logging library for Rust.
4//!
5//! # Examples
6//!
7//! ```
8//! use xlog::warn;
9//!
10//! xlog::log::init(std::io::stdout(), xlog::log::Level::Trace);
11//!
12//! warn!("warn message");
13//! ```
14/// main module
15pub mod log;