Skip to content

Commit 2b220bf

Browse files
committed
clean up structured logging example
1 parent 646e9ab commit 2b220bf

File tree

2 files changed

+13
-8
lines changed

2 files changed

+13
-8
lines changed

README.md

+9-4
Original file line numberDiff line numberDiff line change
@@ -106,17 +106,22 @@ If you enable the `kv` feature, you can associate structured data with your log
106106
use log::{info, trace, warn};
107107

108108
pub fn shave_the_yak(yak: &mut Yak) {
109-
trace!(target = "yak_events", yak:serde = yak; "Commencing yak shaving");
109+
// `yak:serde` will capture `yak` using its `serde::Serialize` impl
110+
//
111+
// You could also use `:?` for `Debug`, or `:%` for `Display`. For a
112+
// full list, see the `log` crate documentation
113+
trace!(target = "yak_events", yak:serde; "Commencing yak shaving");
110114

111115
loop {
112116
match find_a_razor() {
113117
Ok(razor) => {
114-
info!(razor = razor; "Razor located");
118+
info!(razor; "Razor located");
115119
yak.shave(razor);
116120
break;
117121
}
118-
Err(err) => {
119-
warn!(err:err; "Unable to locate a razor, retrying");
122+
Err(e) => {
123+
// `e:err` will capture `e` using its `std::error::Error` impl
124+
warn!(e:err; "Unable to locate a razor, retrying");
120125
}
121126
}
122127
}

src/lib.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -102,17 +102,17 @@
102102
//! use log::{info, warn};
103103
//!
104104
//! pub fn shave_the_yak(yak: &mut Yak) {
105-
//! info!(target: "yak_events", yak:serde = yak; "Commencing yak shaving");
105+
//! info!(target: "yak_events", yak:serde; "Commencing yak shaving");
106106
//!
107107
//! loop {
108108
//! match find_a_razor() {
109109
//! Ok(razor) => {
110-
//! info!(razor = razor; "Razor located");
110+
//! info!(razor; "Razor located");
111111
//! yak.shave(razor);
112112
//! break;
113113
//! }
114-
//! Err(err) => {
115-
//! warn!(err:err; "Unable to locate a razor, retrying");
114+
//! Err(e) => {
115+
//! warn!(e:err; "Unable to locate a razor, retrying");
116116
//! }
117117
//! }
118118
//! }

0 commit comments

Comments
 (0)