Method
record_error
(&mut self, field: &tracing::field::Field, value: &(dyn std::error::Error + 'static))
Source from the content-addressed store, hash-verified
| 59 | } |
| 60 | |
| 61 | fn record_error(&mut self, field: &tracing::field::Field, value: &(dyn std::error::Error + 'static)) { |
| 62 | self.insert(field.name(), format!("{value:?}")); |
| 63 | } |
| 64 | |
| 65 | fn record_debug(&mut self, field: &tracing::field::Field, value: &dyn std::fmt::Debug) { |
| 66 | self.insert(field.name(), format!("{value:?}")); |
Callers
nothing calls this directly
Tested by
no test coverage detected