irox-log

Crates.ioirox-log
lib.rsirox-log
version0.2.0
sourcesrc
created_at2023-11-05 17:36:42.592336
updated_at2024-01-13 19:46:07.489554
descriptionBasic console and file logging
homepagehttps://github.com/spmadden/irox
repositoryhttps://github.com/spmadden/irox
max_upload_size
id1026103
size12,456
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: 1107

cargo fmt