Jelajahi Sumber

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

alexgit2k 3 tahun lalu
induk
melakukan
55d1da131a
1 mengubah file dengan 2 tambahan dan 1 penghapusan
  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")
 	}