basiclog 0.1.4

A simple logging boilerplate for my needs
Documentation

basiclog

This is a simple Rust logging boilerplate for my needs.

Importing:

use basiclog::{info};

Just initialize it:

basiclog::init();

And use:

info!("This is a test!");

Output:

2021/04/28 21:57:04.331 DEB | This is a test!