loglog 0.3.2

A simple and usable logger
Documentation

loglog

loglog on Travis CI loglog on crates.io loglog on docs.rs

A simple and usable logger.

Usage

Create the builder:

loglog::build()

Configure the options:

loglog::build()
    .time(Some("%H:%M"))
    .stdout(true)

Finally, set up and use the logger:

loglog::build()
    .time(Some("%H:%M"))
    .stdout(true)
    .init()
    .unwrap();

info!("Hello!");

For more information, please see the documentation.

License

loglog is licensed under the MIT license. Please see the LICENSE file for more details.