7 个版本 (4 个稳定版)
1.3.0 | 2024年3月23日 |
---|---|
1.2.0 | 2023年3月4日 |
1.1.0 | 2021年9月13日 |
1.0.0 | 2020年2月12日 |
0.1.1 | 2017年4月26日 |
在 命令行界面 中排名第 106
每月下载量 1,045
被 7 crates 使用
27KB
96 代码行
Rust 的简单着色日志器
colog
库是标准 Rust 日志系统(在 log
包中)的一个简单格式化后端。
入门指南
use log::{error, warn, info, debug, trace};
fn main() {
// Quick start: use default initialization
colog::init();
error!("error message");
error!("error with fmt: {}", 42);
warn!("warn message");
info!("info message");
debug!("debug message");
trace!("trace message");
info!("multi line demonstration\nhere");
info!("more\nmulti\nline\nhere\nhere");
}
这将在终端输出以下内容
自定义样式
可以覆盖 colog
的所有颜色和样式。
请参阅以下示例
请务必阅读文档(使用 cargo doc --open
)以获取详细说明。
已知问题和改进
没有已知、严重、未解决的问题。
欢迎补丁 :)
许可证
本项目采用 LGPLv3 许可证。有关详细信息,请参阅 LICENSE
文件。
依赖关系
~0.3–9.5MB
~56K SLoC