5个版本 (1个稳定版)
新版本 1.0.0 | 2024年8月2日 |
---|---|
0.2.0 | 2024年1月16日 |
0.1.2 | 2021年5月10日 |
0.1.1 | 2019年8月16日 |
0.1.0 | 2018年9月30日 |
#170 在 调试 分类中
每月379 次下载
用于 4 crates
10KB
186 行
easy-logging
在您的命令行工具中轻松实现日志记录功能。适用于简单的CLI和原型设计。
只需一个函数调用,即可直接提供彩色日志输出到stdout和stderr。
用法
添加到您的 Cargo.toml
[dependencies]
easy-logging = "1"
示例
use log::{Level, debug, info};
fn main() {
easy_logging::init(module_path!(), Level::Info).unwrap();
debug!("Test debug message.");
info!("Test info message.");
}
启用info级别的输出
I: Test info message.
启用debug级别的输出
[22:29:18.084] [ main.rs:006] D: Test debug message.
[22:29:18.085] [ main.rs:007] I: Test info message.
依赖项
~1.4–1.9MB
~24K SLoC