piglog 1.0.0

A simple, yet beautiful way to print out log messages in the terminal.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# PigLog
A simple, yet beautiful way to print stuff in the terminal.

# Examples:
```rust
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!");
}
```