fmtlog

Crates.iofmtlog
lib.rsfmtlog
version0.1.4
sourcesrc
created_at2021-01-17 13:18:32.404483
updated_at2021-01-30 09:41:45.459713
descriptionA simple configurable logger with format specification.
homepage
repositoryhttps://github.com/watcol/fmtlog
max_upload_size
id343113
size45,391
watcol (watcol)

documentation

README

fmtlog

crates.io docs.rs Downloads Downloads (latest) License

A simple configurable logger with format specification.

detail1

For more formats, see the Formats Collection.

Usage

Add to your Cargo.toml:

[dependencies]
log = "0.4"
fmtlog = "0.1.3"

These features are included by the default, but you can remove these features.

Feature Description
chrono Enable timestamps.
colored Coloring the log.

Like this:

[dependencies.fmtlog]
version = "0.1.3"
default-features = false
features = ["chrono"]  

and initialize the logger in your code:

#[macro_use]
extern crate log;
extern crate fmtlog;

fn main() {
    fmtlog::default()
        .set()
        .unwrap();

    error!("Something has failed.");

    // ...
}

For advanced usage, read the API document.

Features

  • Format Specification
  • Module-level Logging
  • Timestamps Support
  • Colorized Log
  • Logging to the File
  • Multiple log target

Documents

API Documents are available on docs.rs.

Author

License

This program is licensed under the MIT license.

See LICENSE for details.

Commit count: 129

cargo fmt