#log #println #unit-testing

uselog-rs

使用 log 在测试和非测试模式下输出日志,一行代码即可

3 个版本 (重大更新)

0.3.0 2022年3月29日
0.2.0 2022年3月29日
0.1.0 2022年3月29日

#586测试

Apache-2.0

6KB

在使用 uselog_rs 之前,您必须使用四行代码在 测试模式非测试模式 下使用 log 输出日志

现在只需要一行代码

#[cfg(not(test))]
use log::{debug, info, warn};
#[cfg(test)]
use std::{println as debug, println as info, println as warn};

但您需要先将 uselog_rs 添加到父模块中,例如

uselog!(debug, info, warn)

#[macro_use(uselog)]
extern crate uselog_rs;

无运行时依赖