| Crates.io | irox-log |
| lib.rs | irox-log |
| version | 0.2.3 |
| created_at | 2023-11-05 17:36:42.592336+00 |
| updated_at | 2025-01-26 17:03:57.620438+00 |
| description | Basic console and file logging |
| homepage | https://github.com/spmadden/irox |
| repository | https://github.com/spmadden/irox |
| max_upload_size | |
| id | 1026103 |
| size | 16,848 |
Basic console and file logging
use irox_log::{init_console_level};
use log::{Level, info};
pub fn main() {
// With 'Info' specified, 'Error', 'Warn' and 'Info' will be printed, but 'Debug' and 'Trace' will not.
irox_log::init_console_level(Level::Info);
info!("it works!");
}