2个不稳定版本
使用旧Rust 2015
0.2.0 | 2016年8月4日 |
---|---|
0.1.0 | 2016年6月30日 |
#98 in #structured
19KB
300 代码行数(不含注释)
s-structured-log
s-structured-log 是一个用于Rust的JSON日志库。
该库由两部分组成,即 log 前端包装宏(如 s_info!
,s_warn!
等)和实现了 Log
特质的 JsonLogger
。
文档
基本用法
...
[dependencies]
log = "*"
s_structured_log = "*"
serde_json = "*"
#[macro_use]
extern crate log;
#[macro_use]
extern crate s_structured_log;
extern crate serde_json;
use s_structured_log::{JsonLogger, LoggerOutput, q};
fn main() {
JsonLogger::init(LoggerOutput::Stdout, log::LogLevelFilter::Info);
s_debug!(json_object! {
"debug_key1" => 1,
"debug_key2" => "value2"
});
s_info!(json_object! {
"info_key1" => 1,
"info_key2" => "value2"
});
s_error!(json_object! {
"error_key1" => 1,
"error_key2" => "value2"
});
}
更复杂的示例
#[macro_use]
extern crate log;
#[macro_use]
extern crate s_structured_log;
extern crate serde_json;
use s_structured_log::{JsonLogger, LoggerOutput, q};
fn main() {
JsonLogger::init(LoggerOutput::Stderr, log::LogLevelFilter::Info);
// use json_object!
s_info!(json_object! {
"Fruits" => json_object! {
"on_the_table" => json_object! {
"Apple" => 1,
"Orange" => "two",
"Grape" => 1.2
},
"in_the_basket" => ["Banana", "Strawberry"]
},
"Pets" => [
json_object! {
"name" => "Tama",
"kind" => "cat",
"age" => 3
},
json_object! {
"name" => "Pochi",
"kind" => "dog",
"age" => 5
}
]
});
// use json_format! and target with `json:` prefix.
info!(target: &format!("json:{}", module_path!()),
"{}",
json_format! {
"Fruits" => json_format! {
"on_the_table" => json_format! {
"Apple" => 1,
"Orange" => q("two"),
"Grape" => 1.2
},
"in_the_basket" => json_format![q("Banana"), q("Strawberry")]
},
"Pets" => json_format![
json_format! {
"name" => q("Tama"),
"kind" => q("cat"),
"age" => 3
},
json_format! {
"name" => q("Pochi"),
"kind" => q("dog"),
"age" => 5
}
]
});
// use json_format! and default target.
info!("{}",
json_format! {
"Fruits" => json_format! {
"on_the_table" => json_format! {
"Apple" => 1,
"Orange" => 2,
"Grape" => 1.2
},
"in_the_basket" => json_format![q("Banana"), q("Strawberry")]
},
"Pets" => json_format![
json_format! {
"name" => q("Tama"),
"kind" => q("cat")
},
json_format! {
"name" => q("Pochi"),
"kind" => q("dog")
}
]
});
}
许可证
依赖项
~1.5MB
~31K SLoC