1
0
forked from JOJ/JOJ3

chore(parser/debug): log in one line

This commit is contained in:
张泊明518370910136 2025-03-20 18:36:03 -04:00
parent 0954bfdbd0
commit 33d26be20c
Signed by untrusted user: 张泊明518370910136
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: "",