PigLog
A simple, yet beautiful way to print stuff in the terminal.
Examples:
use *;
A simple, yet beautiful way to print stuff in the terminal.
use piglog::prelude::*;
fn main() {
piglog::info!("Hello, world!");
piglog::error!("Hello, world!");
piglog::warning!("Hello, world!");
piglog::note!("Hello, world!");
piglog::debug!("Hello, world!");
piglog::task!("Hello, world!");
piglog::generic!("Hello, world!");
}