piglog 1.2.0

A simple, yet beautiful way to print out log messages in the terminal.
Documentation

PigLog

A simple, yet beautiful way to print stuff in the terminal.

Examples:

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!");
}