3 个版本 (重大更新)
0.3.0 | 2022年3月29日 |
---|---|
0.2.0 | 2022年3月29日 |
0.1.0 | 2022年3月29日 |
#586 在 测试
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;