1 个不稳定版本
使用旧的 Rust 2015
0.1.0 | 2018年7月9日 |
---|
#283 in #logger
118 每月下载量
在 2 crates 中使用
5KB
62 行
clogger
简单的控制台日志记录器,支持在运行时配置,适用于命令行应用程序。
许可证
本库采用 MIT 许可证。有关详细信息,请参阅 LICENSE 文件。
lib.rs
:
简单的控制台日志记录器,支持在运行时配置,适用于命令行应用程序。
示例
extern crate clogger;
#[macro_use]
extern crate log;
fn main() {
clogger::init();
debug!("this is a debug message and will be hidden");
error!("this is printed by default");
clogger::set_verbosity(2);
debug!("verbosity increased, this will now be displayed");
}
依赖项
~160KB