(&mut self, field: &tracing::field::Field, value: &dyn std::fmt::Debug)
| 63 | } |
| 64 | |
| 65 | fn record_debug(&mut self, field: &tracing::field::Field, value: &dyn std::fmt::Debug) { |
| 66 | self.insert(field.name(), format!("{value:?}")); |
| 67 | } |
| 68 | } |
| 69 | |
| 70 | impl<S> Layer<S> for TracingLayer |