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

#826 in Debugging

Download history 15/week @ 2025-10-09 38/week @ 2025-10-16 35/week @ 2025-10-23 23/week @ 2025-10-30 15/week @ 2025-11-06 15/week @ 2025-11-13 12/week @ 2025-11-20 20/week @ 2025-11-27 12/week @ 2025-12-04 14/week @ 2025-12-11 19/week @ 2025-12-18 15/week @ 2025-12-25 17/week @ 2026-01-01 2/week @ 2026-01-08 19/week @ 2026-01-15 20/week @ 2026-01-22

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

MIT/Apache

620KB
16K 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
~21K SLoC