tinylog

I wrote this for my own projects. It's published in case anyone else wants to use it (and for my own convenience).
Usage
extern crate log;
Configuration
Tinylog will use the RUST_LOG environment variable if set.
By default, this is debug for debug builds and info for release builds.
errorwarninfodebugtraceoff
The NO_COLOR and FORCE_COLOR environment variables are also respected. FORCE_COLOR takes
precedence.
Features
- Enable the
humantimefeature to add timestamps to logs. - Enable the
parking_lotfeature to use its types instead ofstdtypes. This usually isn't needed unless your project already hasparking_lotsomewhere.