Method
record_debug
(&mut self, field: &tracing::field::Field, value: &dyn std::fmt::Debug)
Source from the content-addressed store, hash-verified
| 184 | } |
| 185 | |
| 186 | fn record_debug(&mut self, field: &tracing::field::Field, value: &dyn std::fmt::Debug) { |
| 187 | match field.name() { |
| 188 | "sandbox_id" => self.sandbox_id = Some(format!("{value:?}")), |
| 189 | "message" => self.message = Some(format!("{value:?}")), |
| 190 | _ => {} |
| 191 | } |
| 192 | } |
| 193 | } |
| 194 | |
| 195 | fn display_level(target: &str, level: &str) -> String { |
Callers
nothing calls this directly
Tested by
no test coverage detected