6 releases
new 0.2.1 | Dec 15, 2024 |
---|---|
0.2.0 | Jan 13, 2024 |
0.1.3 | Dec 25, 2023 |
0.1.1 | Nov 29, 2023 |
#446 in Debugging
375 downloads per month
Used in 11 crates
(7 directly)
430KB
10K
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!");
}
lib.rs
:
Basic console and file logging.
Dependencies
~0.5–1MB
~23K SLoC