#logging #logger #log #simple #color

badlog

一个简单、零配置、带颜色的日志记录器

12个版本 (3个稳定版)

使用旧的Rust 2015

1.1.1 2018年1月21日
1.1.0 2018年1月18日
1.0.0 2017年11月19日
0.3.1 2017年11月19日
0.1.3 2017年2月10日

#532调试

每月32次下载
3 crates 中使用

MIT 许可证

16KB
73

badlog

Cargo Docs.rs

一个花哨的颜色和极其简单的日志记录器 - 最好的类型。

安装

[dependencies]
badlog = "1.1"
log = "0.4"

使用

  1. 调用 其中一个初始化器
  2. 使用 标准的日志crate宏
  3. 就是这样!

示例

#[macro_use] extern crate log;
extern crate badlog;

fn main() {
    badlog::init_from_env("LOG_LEVEL");

    trace!("Unimportant details.");
    debug!("Debugging information.");
    info!("Hello, World!");
    warn!("Uh, captain, I think we're going down...");
    error!("IT'S THE END.");
}

许可证

MIT.


lib.rs:

一个极其最小化和看起来不错的日志记录器。

依赖

~3–12MB
~117K SLoC