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::task!("Hello, world!");
piglog::generic!("Hello, world!");
piglog::piglog_config::enable_debug_log();
piglog::debug!("Hello, world!");
}