diff --git a/checklists/checklists.go b/checklists/checklists.go index ef37783..9b3fcec 100644 --- a/checklists/checklists.go +++ b/checklists/checklists.go @@ -38,7 +38,7 @@ func (chklst *Checklist) MakeReport() (anyFailed bool, report string) { codes := make(chan int) msgs := make(chan string) for _, chk := range chklst.Checks { - log.Info("Running checklist " + chk.ID()) + log.Info("Running check " + chk.ID()) go func(chk chkutil.Check, codes chan int, msgs chan string) { log.Debug("Running check " + chk.ID()) code, msg, err := chk.Status()