Explorar el Código

Output number of commits at info-level. (#991)

alexgit2k hace 3 años
padre
commit
55d1da131a
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  1. 2 1
      detect/detect.go

+ 2 - 1
detect/detect.go

@@ -364,7 +364,8 @@ func (d *Detector) DetectGit(source string, logOpts string, gitScanType GitScanT
 	if err := s.Wait(); err != nil {
 		return d.findings, err
 	}
-	log.Debug().Msgf("%d commits scanned. Note: this number might be smaller than expected due to commits with no additions", len(d.commitMap))
+	log.Info().Msgf("%d commits scanned.", len(d.commitMap))
+	log.Debug().Msg("Note: this number might be smaller than expected due to commits with no additions")
 	if git.ErrEncountered {
 		return d.findings, fmt.Errorf("%s", "git error encountered, see logs")
 	}