(runID int64, runOutputDir string, opts AuditOptions)
| 881 | } |
| 882 | |
| 883 | func parseAuditLogsIfRequested(runID int64, runOutputDir string, opts AuditOptions) { |
| 884 | if !opts.Parse { |
| 885 | return |
| 886 | } |
| 887 | parseAgentLogIfRequested(runID, runOutputDir, opts.Verbose) |
| 888 | parseFirewallLogsIfRequested(runID, runOutputDir, opts.Verbose) |
| 889 | } |
| 890 | |
| 891 | func parseAgentLogIfRequested(runID int64, runOutputDir string, verbose bool) { |
| 892 | awInfoPath := filepath.Join(runOutputDir, "aw_info.json") |
no test coverage detected