(path: &Path, action: &'static str, error: &impl std::fmt::Display)
| 48 | use crate::sessions::{SessionMessageRecord, SessionRecord}; |
| 49 | |
| 50 | fn log_source_skip(path: &Path, action: &'static str, error: &impl std::fmt::Display) { |
| 51 | tracing::debug!( |
| 52 | transcript_path = %path.display(), |
| 53 | action, |
| 54 | error = %error, |
| 55 | "skipping transcript source input" |
| 56 | ); |
| 57 | } |
| 58 | |
| 59 | fn log_jsonl_decode_skip(path: &Path, offset: u64, error: &serde_json::Error) { |
| 60 | tracing::debug!( |
no outgoing calls
no test coverage detected