(runOutputDir string, jsonOutput bool)
| 923 | } |
| 924 | |
| 925 | func renderAuditCompletion(runOutputDir string, jsonOutput bool) { |
| 926 | if jsonOutput { |
| 927 | return |
| 928 | } |
| 929 | absOutputDir, _ := filepath.Abs(runOutputDir) |
| 930 | fmt.Fprintln(os.Stderr, console.FormatSuccessMessage("Audit complete. Logs saved to "+absOutputDir)) |
| 931 | fmt.Fprintln(os.Stderr, console.FormatInfoMessage("Tip: use --artifacts to select specific artifact sets (agent, firewall, mcp, activation, detection, etc.)")) |
| 932 | } |
| 933 | |
| 934 | // auditJobRunOptions holds parameters for auditJobRun. |
| 935 | type auditJobRunOptions struct { |
no test coverage detected