loglog
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.