quil 0.4.1

A simple logger for Rust projects
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Contains logger targets and the target trait for implementing custom
//! targets

mod console;
mod dump;
mod escape_chars;
mod json_file;
#[macro_use]
mod target_set;
mod target;

pub use self::console::{Console, ConsoleOptions};
pub use self::dump::Dump;
pub use self::escape_chars::escape_chars;
pub use self::json_file::JsonFile;
pub use self::target_set::TargetSet;
pub use self::target::Target;