Aller au fichier
tforgione 9a67fbff6c Update 'README.md' 2019-03-04 12:47:22 +00:00
examples Initial commit 2019-02-27 10:40:43 +01:00
src Initial commit 2019-02-27 10:40:43 +01:00
.gitignore Initial commit 2019-02-27 10:40:43 +01:00
Cargo.toml Initial commit 2019-02-27 10:40:43 +01:00
LICENSE Initial commit 2019-02-27 10:40:43 +01:00
README.md Update 'README.md' 2019-03-04 12:47:22 +00:00

README.md

beautylog

A beautiful logger in rust.

This repository contains the beauty logger. It's based on the log crate.

It is made to be super simple and to mimic the output of rustup and cargo.

Usage

#[macro_use]
extern crate log;

fn main() {

    beautylog::init(log::LevelFilter::Trace).ok();

    info!("some information");
    warn!("something went wrong");
    debug!("some debug info");
    trace!("yo");
    error!("something went horribly wrong");

}

How it looks like

how it renders