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

Commit

Permalink
chore: reduce log severity
Browse files Browse the repository at this point in the history
  • Loading branch information
tbruyelle committed Dec 18, 2024
1 parent 1108828 commit 344ca17
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/lsp/build.go
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ func (s *server) parseErrors(output, cmd string) ([]ErrorInfo, error) {
return nil, fmt.Errorf("parseErrors '%s': %w", match, err)
}
msg := strings.TrimSpace(match[4])
slog.Info("parseErrors", "path", path, "line", line, "column", column, "msg", msg)
slog.Debug("parseErrors", "path", path, "line", line, "column", column, "msg", msg)
errors = append(errors, ErrorInfo{
FileName: filepath.Join(s.workspaceFolder, path),
Line: line,
Expand Down

0 comments on commit 344ca17

Please sign in to comment.