Skip to content

Commit

Permalink
remove prints
Browse files Browse the repository at this point in the history
  • Loading branch information
charlieegan3 committed Oct 3, 2024
1 parent 3335043 commit ee60cf2
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions internal/lsp/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,6 @@ func (l *LanguageServer) StartDiagnosticsWorker(ctx context.Context) {
case <-ctx.Done():
return
case job := <-l.lintFileJobs:
fmt.Fprintln(l.errorLog, "file job", filepath.Base(job.URI), job.Reason)
bis := l.builtinsForCurrentCapabilities()

// updateParse will not return an error when the parsing failed,
Expand Down Expand Up @@ -364,8 +363,6 @@ func (l *LanguageServer) StartDiagnosticsWorker(ctx context.Context) {
continue
}

fmt.Fprintln(l.errorLog, "workspace job", job.Reason)

targetRules := l.getEnabledAggregateRules()
if !job.AggregateReportOnly {
targetRules = append(targetRules, l.getEnabledNonAggregateRules()...)
Expand Down

0 comments on commit ee60cf2

Please sign in to comment.