| Crates.io | mowl |
| lib.rs | mowl |
| version | 2.1.1 |
| created_at | 2016-12-22 17:06:36.777932+00 |
| updated_at | 2021-02-04 10:14:56.094518+00 |
| description | Simple logging with coloring support |
| homepage | https://github.com/saschagrunert/mowl |
| repository | https://github.com/saschagrunert/mowl |
| max_upload_size | |
| id | 7726 |
| size | 13,537 |
A simple logger with coloring support
#[macro_use]
extern crate log;
extern crate mowl;
fn main() {
mowl::init().unwrap();
warn!("Warning");
}