From 3db607bf98f37c89113264ea4c416d7696fa0aea Mon Sep 17 00:00:00 2001 From: Robert Findley Date: Wed, 28 Sep 2022 16:59:29 -0400 Subject: [PATCH] gopls/internal/lsp/cache: remove "discovered missing identifiers" log It is noisy and not useful. Change-Id: I9576e921f6dd177dc573dbf1b10c1701eda104d8 Reviewed-on: https://go-review.googlesource.com/c/tools/+/436215 Reviewed-by: Alan Donovan Run-TryBot: Robert Findley TryBot-Result: Gopher Robot gopls-CI: kokoro --- gopls/internal/lsp/cache/check.go | 1 - 1 file changed, 1 deletion(-) diff --git a/gopls/internal/lsp/cache/check.go b/gopls/internal/lsp/cache/check.go index 3974f516f8..7058394f87 100644 --- a/gopls/internal/lsp/cache/check.go +++ b/gopls/internal/lsp/cache/check.go @@ -347,7 +347,6 @@ func typeCheckImpl(ctx context.Context, snapshot *snapshot, goFiles, compiledGoF // time keeping those names. missing, unexpected := filter.ProcessErrors(pkg.typeErrors) if len(unexpected) == 0 && len(missing) != 0 { - event.Log(ctx, fmt.Sprintf("discovered missing identifiers: %v", missing), tag.Package.Of(string(m.ID))) pkg, err = doTypeCheck(ctx, snapshot, goFiles, compiledGoFiles, m, mode, deps, filter) if err != nil { return nil, err