chore(parser/debug): log in one line
All checks were successful
submodules sync / sync (push) Successful in 59s
build / build (push) Successful in 2m10s
build / trigger-build-image (push) Successful in 11s

This commit is contained in:
张泊明518370910136 2025-03-20 18:36:03 -04:00
parent 0954bfdbd0
commit 33d26be20c
GPG Key ID: D47306D7062CDA9D

View File

@ -7,10 +7,11 @@ import (
) )
func (*Debug) parse(executorResult stage.ExecutorResult, _ Conf) stage.ParserResult { func (*Debug) parse(executorResult stage.ExecutorResult, _ Conf) stage.ParserResult {
slog.Debug("debug parser", "executorResult", executorResult) slog.Debug(
for name, content := range executorResult.Files { "debug parser",
slog.Debug("debug parser file", "name", name, "content", content) "executorResult", executorResult,
} "files", executorResult.Files,
)
return stage.ParserResult{ return stage.ParserResult{
Score: 0, Score: 0,
Comment: "", Comment: "",