flarelog 0.5.0

flarelog is an ergonomic logging library for Rust with a focus on simplicity and speed.
Documentation
1
2
3
4
5
6
use chrono::prelude::*;

pub fn local_str() -> String {
    let time = Local::now();
    time.to_string()
}