| 50 | |
| 51 | #[derive(Debug, Clone)] |
| 52 | pub struct LoggedMessage { |
| 53 | pub time: chrono::DateTime<chrono::Utc>, |
| 54 | pub level: tracing::Level, |
| 55 | pub target: String, |
| 56 | pub message: String, |
| 57 | } |
| 58 | |
| 59 | #[derive(Debug, Default)] |
| 60 | struct Collector { |
nothing calls this directly
no outgoing calls
no test coverage detected