From 83885d795f0f85f8738f3f12946012426bd72ee5 Mon Sep 17 00:00:00 2001 From: Boming Zhang Date: Sat, 1 Mar 2025 20:35:14 -0500 Subject: [PATCH] fix(stage): debug log score map from parsers --- internal/stage/run.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/stage/run.go b/internal/stage/run.go index 8dabdaa..9ee2700 100644 --- a/internal/stage/run.go +++ b/internal/stage/run.go @@ -134,7 +134,7 @@ func Run(stages []Stage) ( Results: parserResults, ForceQuit: forceQuitStageName != "", }) - slog.Info("stage done", "name", stage.Name, "parser scores", scoresMap) + slog.Debug("stage done", "name", stage.Name, "parser scores", scoresMap) if forceQuitStageName != "" { break }