irox-log

Crates.ioirox-log
lib.rsirox-log
version0.2.3
created_at2023-11-05 17:36:42.592336+00
updated_at2025-01-26 17:03:57.620438+00
descriptionBasic console and file logging
homepagehttps://github.com/spmadden/irox
repositoryhttps://github.com/spmadden/irox
max_upload_size
id1026103
size16,848
Sean Madden (spmadden)

documentation

README

IROX-LOG

Basic console and file logging

Examples

Console 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!");
}
Commit count: 1556

cargo fmt