feat: debug log executor result files
All checks were successful
build-image / create-empty-commit (push) Successful in 5s
checks / build (push) Successful in 1m14s

This commit is contained in:
张泊明518370910136 2024-09-30 01:51:55 -04:00
parent e2bf6d3cf1
commit 4c00904f25
GPG Key ID: D47306D7062CDA9D

View File

@ -25,6 +25,9 @@ func Run(stages []Stage) (stageResults []StageResult, err error) {
return return
} }
slog.Debug("executor run done", "results", executorResults) slog.Debug("executor run done", "results", executorResults)
for _, executorResult := range executorResults {
slog.Debug("executor run done", "result.Files", executorResult.Files)
}
slog.Info("parser run start") slog.Info("parser run start")
slog.Debug("parser run start", "conf", stage.ParserConf) slog.Debug("parser run start", "conf", stage.ParserConf)
parser, ok := parserMap[stage.ParserName] parser, ok := parserMap[stage.ParserName]