feat(stage): remove debug log of files
All checks were successful
submodules sync / sync (push) Successful in 47s
build / build (push) Successful in 1m53s
build / trigger-build-image (push) Successful in 8s

This commit is contained in:
张泊明518370910136 2024-11-05 23:13:08 -05:00
parent 6b99cc41a9
commit a2ae94dbcd
GPG Key ID: D47306D7062CDA9D

View File

@ -27,9 +27,6 @@ func Run(stages []Stage) (stageResults []StageResult, forceQuit bool, err error)
return
}
slog.Debug("executor run done", "results", executorResults)
for _, executorResult := range executorResults {
slog.Debug("executor run done", "result.Files", executorResult.Files)
}
parserResults = []ParserResult{}
forceQuit = false
for _, stageParser := range stage.Parsers {