Skip to content
This repository was archived by the owner on Jan 31, 2025. It is now read-only.

Commit 5f8770f

Browse files
committed
chore: reduce log severity
1 parent 9c14478 commit 5f8770f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/lsp/build.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ func (s *server) parseErrors(output, cmd string) ([]ErrorInfo, error) {
8282
return nil, fmt.Errorf("parseErrors '%s': %w", match, err)
8383
}
8484
msg := strings.TrimSpace(match[4])
85-
slog.Info("parseErrors", "path", path, "line", line, "column", column, "msg", msg)
85+
slog.Debug("parseErrors", "path", path, "line", line, "column", column, "msg", msg)
8686
errors = append(errors, ErrorInfo{
8787
FileName: filepath.Join(s.workspaceFolder, path),
8888
Line: line,

0 commit comments

Comments
 (0)