#logging #info #fatal #error #warn #trying #anywhere

log4rust

一个旨在尽可能容易实现的Rust日志系统

7个版本

0.1.6 2023年2月3日
0.1.5 2023年2月3日
0.1.4 2022年9月16日

#4 in #fatal

Download history 17/week @ 2024-06-29 77/week @ 2024-07-27

93 每月下载次数

MIT许可协议

15KB
277

Log4rust

一个旨在尽可能容易实现的Rust日志系统

示例

fn main() {
    log4rust::new().save().unwrap();
    // this could be in a new thread or anywhere in your code
    info!("This is some info");
    warn!("This is a warning");
    error!("This is an error");
    fatal!("This is something fatal");
}

您也可以查看示例文件夹,了解如何进行其他操作

Crate: https://crates.io/crates/log4rust
文档: https://docs.rs/log4rust


lib.rs:

Loggerz是一个旨在尽可能容易的日志系统!
查看config,了解如何自定义日志记录器。

示例

fn main() {
    log4rust::new().save().unwrap();
    // this could be in a new thread or anywhere in your code
    info!("This is some info");
    warn!("This is a warning");
    error!("This is an error");
    fatal!("This is something fatal");
}

依赖

~3–15MB
~142K SLoC