21 个稳定版本
新 1.7.3 | 2024 年 8 月 20 日 |
---|---|
1.6.0 | 2022 年 7 月 19 日 |
1.5.1 | 2022 年 2 月 24 日 |
1.3.3 | 2021 年 11 月 16 日 |
0.1.0 | 2020 年 11 月 30 日 |
#127 在 调试
1,401 每月下载量
用于 少于 16 个 工具包
33KB
454 行
simple-log
使用 Rust 通过本地文件或 stdout 写入的简单日志。
simple-log 输出格式
2020-12-07 15:06:03.260570000 [INFO] <json_log:16>:info json simple_log
2020-12-07 15:06:03.262106000 [WARN] <json_log:17>:warn json simple_log
2020-12-07 15:06:03.262174000 [ERROR] <json_log:18>:error json simple_log
快速使用
[dependencies]
simple-log = "{latest}"
#[macro_use]
extern crate simple_log;
fn main() {
simple_log::quick!("info"); // also use empty args: simple_log::quick!();
// simple_log::quick!(); //use debug log_level
debug!("test quick debug");
info!("test quick info");
}
项目中的使用
[dependencies]
simple-log = "{latest}"
#[macro_use]
extern crate simple_log;
use simple_log::LogConfigBuilder;
fn main() -> Result<(), String> {
let config = LogConfigBuilder::builder()
.path("./log/builder_log.log")
.size(1 * 100)
.roll_count(10)
.time_format("%Y-%m-%d %H:%M:%S.%f") //E.g:%H:%M:%S.%f
.level("debug")
.output_file()
.output_console()
.build();
simple_log::new(config)?;
debug!("test builder debug");
info!("test builder info");
Ok(())
}
使用 toml 配置
[dependencies]
simple-log = "{latest}"
toml = "0.5.7"
#[macro_use]
extern crate simple_log;
#[macro_use]
extern crate serde_derive;
use simple_log::LogConfig;
#[derive(Deserialize)]
struct LogConfigWrap {
log_config: LogConfig,
}
fn main() {
let config = r#"
[log_config]
path = "./log/tmp.log"
level = "debug"
size = 10
out_kind = ["console","file"] # also configure only with file: out_kind = "file"
roll_count = 10
time_format = "%H:%M:%S.%f"
"#;
let wrap: LogConfigWrap = toml::from_str(config).unwrap();
simple_log::new(wrap.log_config).unwrap();//init log
info!("info toml simple_log");
warn!("warn toml simple_log");
error!("error toml simple_log");
}
使用 json 配置
[dependencies]
simple-log = "{latest}"
serde_json = "1"
#[macro_use]
extern crate simple_log;
use simple_log::LogConfig;
fn main() {
let config = r#"
{
"path":"./log/tmp.log",
"level":"debug",
"size":10,
"out_kind":["console","file"],
"roll_count":10,
"time_format":"%H:%M:%S.%f"
}"#;
let log_config: LogConfig = serde_json::from_str(config).unwrap();
simple_log::new(log_config).unwrap();//init log
info!("info json simple_log");
warn!("warn json simple_log");
error!("error json simple_log");
}
示例
更多示例请见 示例。
依赖关系
~4.5MB
~91K SLoC