Skip to content

Commit

Permalink
Processor log message fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dosaboy committed Aug 25, 2023
1 parent d742096 commit a946b7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/processor/processor.go
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ func NewReportRunner(cfg *config.Config, dbConn *gorm.DB, sf common.SalesforceCl
var scripts = make(map[string]string)

for reportName, report := range reports {
log.Debugf("Running %d scripts on sosreport '%s'", len(report.Scripts), reportName)
log.Debugf("Running %s script(s) (num=%d)", reportName, len(report.Scripts))
for scriptName, script := range report.Scripts {
if script.Run == "" {
log.Errorf("No script provided to run on '%s'", scriptName)
Expand Down

0 comments on commit a946b7b

Please sign in to comment.