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 {
slog.Debug("debug parser", "executorResult", executorResult)
for name, content := range executorResult.Files {
slog.Debug("debug parser file", "name", name, "content", content)
}
slog.Debug(
"debug parser",
"executorResult", executorResult,
"files", executorResult.Files,
)
return stage.ParserResult{
Score: 0,
Comment: "",