From eba309cfb7b6ecac0a88828a53f64c02f91d1574 Mon Sep 17 00:00:00 2001 From: Carlos Alexandro Becker Date: Thu, 23 Oct 2025 16:28:36 -0300 Subject: [PATCH] fix: diagnostics log double quotting Signed-off-by: Carlos Alexandro Becker --- internal/llm/tools/diagnostics.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/llm/tools/diagnostics.go b/internal/llm/tools/diagnostics.go index c2625e9495963f1de467656b2d74e71e0b3c78fa..3418a08e5b13d3a7a795fe0a5872d4c62899ff7f 100644 --- a/internal/llm/tools/diagnostics.go +++ b/internal/llm/tools/diagnostics.go @@ -122,7 +122,7 @@ func getDiagnostics(filePath string, lsps *csync.Map[string, *lsp.Client]) strin } out := output.String() - slog.Info("Diagnostics", "output", fmt.Sprintf("%q", out)) + slog.Info("Diagnostics", "output", out) return out }