8 releases

0.2.3 Jan 26, 2025
0.2.2 Jan 26, 2025
0.2.1 Dec 15, 2024
0.2.0 Jan 13, 2024
0.1.1 Nov 29, 2023

#571 in Debugging

Download history 8/week @ 2024-12-25 34/week @ 2025-01-01 39/week @ 2025-01-08 23/week @ 2025-01-15 275/week @ 2025-01-22 55/week @ 2025-01-29 120/week @ 2025-02-05 69/week @ 2025-02-12 29/week @ 2025-02-19 137/week @ 2025-02-26 55/week @ 2025-03-05 29/week @ 2025-03-12 4/week @ 2025-03-19 15/week @ 2025-03-26 12/week @ 2025-04-02 29/week @ 2025-04-09

62 downloads per month
Used in 10 crates (7 directly)

MIT/Apache

550KB
13K SLoC

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!");
}

Dependencies

~0.5–1MB
~22K SLoC