(
project_path: &Path,
task: crate::automation::backend::AgentTaskKind,
error: &TraceDecayError,
)
| 692 | |
| 693 | #[cfg(unix)] |
| 694 | fn log_scheduler_task_error( |
| 695 | project_path: &Path, |
| 696 | task: crate::automation::backend::AgentTaskKind, |
| 697 | error: &TraceDecayError, |
| 698 | ) { |
| 699 | log_daemon_event( |
| 700 | "scheduler_task_error", |
| 701 | &scheduler_task_error_log_fields(project_path, task, error), |
| 702 | ); |
| 703 | } |
| 704 | |
| 705 | #[cfg(unix)] |
| 706 | fn scheduler_record_log_fields( |
no test coverage detected