(
project_path: &Path,
task: crate::automation::backend::AgentTaskKind,
error: &TraceDecayError,
)
| 676 | |
| 677 | #[cfg(unix)] |
| 678 | fn scheduler_task_error_log_fields( |
| 679 | project_path: &Path, |
| 680 | task: crate::automation::backend::AgentTaskKind, |
| 681 | error: &TraceDecayError, |
| 682 | ) -> Vec<(&'static str, String)> { |
| 683 | vec![ |
| 684 | ("project", project_path.display().to_string()), |
| 685 | ( |
| 686 | "task", |
| 687 | crate::automation::backend::task_key(task).to_string(), |
| 688 | ), |
| 689 | ("error", error.to_string()), |
| 690 | ] |
| 691 | } |
| 692 | |
| 693 | #[cfg(unix)] |
| 694 | fn log_scheduler_task_error( |
no outgoing calls
no test coverage detected