| Crates.io | logr |
| lib.rs | logr |
| version | 1.0.1 |
| created_at | 2019-12-17 01:57:08.101018+00 |
| updated_at | 2020-12-29 17:09:19.67333+00 |
| description | Logging for men |
| homepage | https://github.com/diced/logr-rs |
| repository | https://github.com/diced/logr-rs.git |
| max_upload_size | |
| id | 189907 |
| size | 6,482 |
Simple logging ! Docs
cargo says otherwise to use 2.0.0 but it doesnt exist so use 1.0.1 :D
[dependencies]
logr = "1.0.1"
Simple:
use logr::Logger;
fn main() {
// input your own types in this vv
let logger = Logger::get::<Logger>();
logger.info("info log !");
}