(error: &TraceDecayError)
| 280 | } |
| 281 | |
| 282 | fn is_daemon_unavailable(error: &TraceDecayError) -> bool { |
| 283 | matches!( |
| 284 | error, |
| 285 | TraceDecayError::Config { message } |
| 286 | if message.contains("TraceDecay daemon socket") |
| 287 | && message.contains("is not available") |
| 288 | ) |
| 289 | } |
| 290 | |
| 291 | fn print_tool_output(result_value: &Value, raw_json: bool) { |
| 292 | if raw_json { |
no outgoing calls
no test coverage detected