Description
gopls version
Build info
----------
golang.org/x/tools/gopls v0.13.1
golang.org/x/tools/[email protected] h1:Q0cfPbEG1WVfgxcRZ9uKTA6/ckIRNXx6Ym7KgT/VFE4=
github.com/BurntSushi/[email protected] h1:9F2/+DoOYIOksmaJFPw1tGFy1eDnIJXg+UHjuD8lTak=
github.com/google/[email protected] h1:O2Tfq5qg4qc4AmwVlvv0oLiVAGB7enBSJ2x2DqQFi38=
github.com/sergi/[email protected] h1:we8PVUC3FE2uYfodKH/nBHMSetSfHDR6scGdBi+erh0=
golang.org/x/[email protected] h1:+WEEuIdZHnUeJJmEUjyYC2gfUMj69yZXw17EnHg/otA=
golang.org/x/exp/[email protected] h1:2O2DON6y3XMJiQRAS1UWU+54aec2uopH3x7MAiqGW6Y=
golang.org/x/[email protected] h1:rmsUpXtvNzj340zd98LZ4KntptpfRHwpFOHG188oHXc=
golang.org/x/[email protected] h1:ftCYgMx6zT/asHUrPw8BLLscYtGznsLAnjq5RH9P66E=
golang.org/x/[email protected] h1:SqMFp9UcQJZa+pmYuAKjd9xq1f0j5rLcDIk0mj4qAsA=
golang.org/x/[email protected] h1:LAntKIrcmeSKERyiOh0XMV39LXS8IE9UL2yP7+f5ij4=
golang.org/x/[email protected] h1:YilyjKn3EDn6X+x+kP+4REeEtG3WeM52dJAr7AWzVrQ=
golang.org/x/[email protected] h1:A9kONVi4+AnuOr1dopsibH6hLi1Huy54cbeJxnq4vmU=
honnef.co/go/[email protected] h1:6qXr+R5w+ktL5UkwEbPp+fEvfyoMPche6GkOpGHZcLc=
mvdan.cc/[email protected] h1:JVf4NN1mIpHogBj7ABpgOyZc65/UUOkKQFkoURsz4MM=
mvdan.cc/xurls/[email protected] h1:tzxjVAj+wSBmDcF6zBB7/myTy3gX9xvi8Tyr28AuQgc=
go: go1.19
go env
GO111MODULE="on"
GOARCH="amd64"
GOBIN="/Users/dppascual/go/bin"
GOCACHE="/Users/dppascual/Library/Caches/go-build"
GOENV="/Users/dppascual/Library/Application Support/go/env"
GOEXE=""
GOEXPERIMENT=""
GOFLAGS=""
GOHOSTARCH="amd64"
GOHOSTOS="darwin"
GOINSECURE=""
GOMODCACHE="/Users/dppascual/go/pkg/mod"
GONOPROXY="*.bbva.com,*.igrupobbva"
GONOSUMDB="*.bbva.com,*.igrupobbva"
GOOS="darwin"
GOPATH="/Users/dppascual/go"
GOPRIVATE="*.bbva.com,*.igrupobbva"
GOPROXY="https://proxy.golang.org,direct"
GOROOT="/usr/local/go"
GOSUMDB="sum.golang.org"
GOTMPDIR=""
GOTOOLDIR="/usr/local/go/pkg/tool/darwin_amd64"
GOVCS=""
GOVERSION="go1.19"
GCCGO="gccgo"
GOAMD64="v1"
AR="ar"
CC="clang"
CXX="clang++"
CGO_ENABLED="1"
GOMOD="/Users/dppascual/projects/work/bbva/titan/go.mod"
GOWORK=""
CGO_CFLAGS="-g -O2"
CGO_CPPFLAGS=""
CGO_CXXFLAGS="-g -O2"
CGO_FFLAGS="-g -O2"
CGO_LDFLAGS="-g -O2"
PKG_CONFIG="pkg-config"
GOGCCFLAGS="-fPIC -arch x86_64 -m64 -pthread -fno-caret-diagnostics -Qunused-arguments -fmessage-length=0 -fdebug-prefix-map=/var/folders/zg/tz2xtl3138bfl888yv2gc_600000gn/T/go-build818485392=/tmp/go-build -gno-record-gcc-switches -fno-common"
What did you do?
I haven't found any solid pattern yet that evidences why it is happening, but I have a vague feeling that it could be caused by any condition when code actions are requested. I had to disable the plugin `https://github.com/kosayoda/nvim-lightbulb' (basically, it shows a lightbulb whenever a code action is available at the current cursor position) because it was causing such anomaly happened more frequently.
Also, I have configured an autocommand that execute the code action organize imports
each time the file is saved. This action has been always executed when the anomaly comes up, but it doesn't mean the anomaly happens every time the action is executed.
vim.api.nvim_create_autocmd('BufWritePre', {
group = vim.api.nvim_create_augroup( 'GoFormatting', { clear = true }
),
pattern = '*.go',
callback = function()
local params = vim.lsp.util.make_range_params()
params.context =
{ only = { 'source.organizeImports' } }
local result = vim.lsp.buf_request_sync(
0,
'textDocument/codeAction',
params,
2000
)
for _, res in pairs(result or {}) do
for _, r in pairs(res.result or {}) do
if r.edit then
vim.lsp.util.apply_workspace_edit(
r.edit,
'utf-16'
)
else
vim.lsp.buf.execute_command(r.command)
end
end
end
vim.lsp.buf.format()
end,
})
What did you expect to see?
The server gopls
should send back a response for every method requested by the client.
What did you see instead?
When it happens, completions|diagnostics|code actions stop working for a while (30 seconds or so, and sometimes, even minutes). The editor shows up the following message Server for client 'gopls' not yet ready!
Editor and settings
Editor:
nvim -v
NVIM v0.10.0-dev-666+g516b17378
Build type: Release
LuaJIT 2.1.0-beta3
Run "nvim -V1 -v" for more info
gopls:
{
'neovim/nvim-lspconfig',
opts = {
servers = {
gopls = {
-- cmd = { 'gopls', '-rpc.trace' },
settings = {
gopls = {
usePlaceholders = true,
gofumpt = true,
analyses = {
fieldalignment = true,
nilness = true,
unusedparams = true,
unusedwrite = true,
useany = true,
deprecated = true,
},
codelenses = {
gc_details = false,
generate = true,
regenerate_cgo = true,
run_govulncheck = true,
test = true,
tidy = true,
upgrade_dependency = true,
vendor = true,
},
experimentalPostfixCompletions = true,
completeUnimported = true,
staticcheck = true,
directoryFilters = { '-.git', '-node_modules' },
semanticTokens = true,
hints = {
assignVariableTypes = true,
compositeLiteralFields = true,
compositeLiteralTypes = true,
constantValues = true,
functionTypeParameters = true,
parameterNames = true,
rangeVariableTypes = true,
},
},
},
},
},
setup = {
gopls = function(_, opts)
-- workaround for gopls not supporting semanticTokensProvider
-- https://github.com/golang/go/issues/54531#issuecomment-1464982242
-- stylua: ignore
vim.api.nvim_create_autocmd("LspAttach", {
callback = function(ev)
local client = vim.lsp.get_client_by_id(ev.data.client_id)
if client.name == 'gopls' then
if
not client.server_capabilities.semanticTokensProvider
then
local semantic =
client.config.capabilities.textDocument.semanticTokens
client.server_capabilities.semanticTokensProvider =
{
full = true,
legend = {
tokenTypes = semantic.tokenTypes,
tokenModifiers = semantic.tokenModifiers,
},
range = true,
}
end
end
end
})-- end workaround
-- Run gofmt/gofumpt, import packages automatically on save
-- stylua: ignore
vim.api.nvim_create_autocmd('BufWritePre', {
group = vim.api.nvim_create_augroup( 'GoFormatting', { clear = true }
),
pattern = '*.go',
callback = function()
local params = vim.lsp.util.make_range_params()
params.context =
{ only = { 'source.organizeImports' } }
local result = vim.lsp.buf_request_sync(
0,
'textDocument/codeAction',
params,
2000
)
for _, res in pairs(result or {}) do
for _, r in pairs(res.result or {}) do
if r.edit then
vim.lsp.util.apply_workspace_edit(
r.edit,
'utf-16'
)
else
vim.lsp.buf.execute_command(r.command)
end
end
end
vim.lsp.buf.format()
end,
})
end,
},
},
},
Logs
[ERROR][2023-08-11 12:39:49] .../vim/lsp/rpc.lua:676 "rpc" "/Users/dppascual/.local/share/nvim/mason/bin/gopls" "stderr" "[Trace - 12:39:49.967 PM] Sending notification 'workspace/didChangeWatchedFiles'.\nParams: {\"changes\":[{\"type\":1,\"uri\":\"file:\\/\\/\\/Users\\/dppascual\\/projects\\/work\\/bbva\\/titan\\/libs\\/tracing\\/opentelemetry\\/exporters\\/seemas\\/exporter_test.go\"}]}\r\n\r\n\r\n"
[ERROR][2023-08-11 12:39:50] .../vim/lsp/rpc.lua:676 "rpc" "/Users/dppascual/.local/share/nvim/mason/bin/gopls" "stderr" "[Trace - 12:39:50.109 PM] Sending request 'textDocument/codeLens - (1040)'.\nParams: {\"textDocument\":{\"uri\":\"file:\\/\\/\\/Users\\/dppascual\\/projects\\/work\\/bbva\\/titan\\/libs\\/tracing\\/opentelemetry\\/exporters\\/seemas\\/exporter_test.go\"}}\r\n\r\n\r\n"
[ERROR][2023-08-11 12:39:50] .../vim/lsp/rpc.lua:676 "rpc" "/Users/dppascual/.local/share/nvim/mason/bin/gopls" "stderr" "[Trace - 12:39:50.109 PM] Sending request 'textDocument/documentHighlight - (1041)'.\nParams: {\"textDocument\":{\"uri\":\"file:\\/\\/\\/Users\\/dppascual\\/projects\\/work\\/bbva\\/titan\\/libs\\/tracing\\/opentelemetry\\/exporters\\/seemas\\/exporter_test.go\"},\"position\":{\"line\":38,\"character\":23}}\r\n\r\n\r\n"
[ERROR][2023-08-11 12:39:50] .../vim/lsp/rpc.lua:676 "rpc" "/Users/dppascual/.local/share/nvim/mason/bin/gopls" "stderr" "[Trace - 12:39:50.852 PM] Sending notification '$/cancelRequest'.\nParams: {\"id\":1037}\r\n\r\n\r\n[Trace - 12:39:50.852 PM] Sending request 'textDocument/documentHighlight - (1042)'.\nParams: {\"textDocument\":{\"uri\":\"file:\\/\\/\\/Users\\/dppascual\\/projects\\/work\\/bbva\\/titan\\/libs\\/tracing\\/opentelemetry\\/exporters\\/seemas\\/exporter_test.go\"},\"position\":{\"line\":37,\"character\":26}}\r\n\r\n\r\n"
[ERROR][2023-08-11 12:39:50] .../vim/lsp/rpc.lua:676 "rpc" "/Users/dppascual/.local/share/nvim/mason/bin/gopls" "stderr" "[Trace - 12:39:50.959 PM] Sending request 'textDocument/documentHighlight - (1043)'.\nParams: {\"textDocument\":{\"uri\":\"file:\\/\\/\\/Users\\/dppascual\\/projects\\/work\\/bbva\\/titan\\/libs\\/tracing\\/opentelemetry\\/exporters\\/seemas\\/exporter_test.go\"},\"position\":{\"line\":37,\"character\":26}}\r\n\r\n\r\n"
[ERROR][2023-08-11 12:39:51] .../vim/lsp/rpc.lua:676 "rpc" "/Users/dppascual/.local/share/nvim/mason/bin/gopls" "stderr" "[Trace - 12:39:51.045 PM] Sending notification '$/cancelRequest'.\nParams: {\"id\":1042}\r\n\r\n\r\n[Trace - 12:39:51.045 PM] Sending request 'textDocument/documentHighlight - (1044)'.\nParams: {\"textDocument\":{\"uri\":\"file:\\/\\/\\/Users\\/dppascual\\/projects\\/work\\/bbva\\/titan\\/libs\\/tracing\\/opentelemetry\\/exporters\\/seemas\\/exporter_test.go\"},\"position\":{\"line\":38,\"character\":23}}\r\n\r\n\r\n"
[ERROR][2023-08-11 12:39:51] .../vim/lsp/rpc.lua:676 "rpc" "/Users/dppascual/.local/share/nvim/mason/bin/gopls" "stderr" "[Trace - 12:39:51.151 PM] Sending request 'textDocument/documentHighlight - (1045)'.\nParams: {\"textDocument\":{\"uri\":\"file:\\/\\/\\/Users\\/dppascual\\/projects\\/work\\/bbva\\/titan\\/libs\\/tracing\\/opentelemetry\\/exporters\\/seemas\\/exporter_test.go\"},\"position\":{\"line\":38,\"character\":23}}\r\n\r\n\r\n"
[ERROR][2023-08-11 12:39:51] .../vim/lsp/rpc.lua:676 "rpc" "/Users/dppascual/.local/share/nvim/mason/bin/gopls" "stderr" "[Trace - 12:39:51.584 PM] Sending notification '$/cancelRequest'.\nParams: {\"id\":1044}\r\n\r\n\r\n[Trace - 12:39:51.585 PM] Sending request 'textDocument/documentHighlight - (1046)'.\nParams: {\"textDocument\":{\"uri\":\"file:\\/\\/\\/Users\\/dppascual\\/projects\\/work\\/bbva\\/titan\\/libs\\/tracing\\/opentelemetry\\/exporters\\/seemas\\/exporter_test.go\"},\"position\":{\"line\":38,\"character\":23}}\r\n\r\n\r\n"
[ERROR][2023-08-11 12:39:51] .../vim/lsp/rpc.lua:676 "rpc" "/Users/dppascual/.local/share/nvim/mason/bin/gopls" "stderr" "[Trace - 12:39:51.959 PM] Sending notification '$/cancelRequest'.\nParams: {\"id\":1046}\r\n\r\n\r\n[Trace - 12:39:51.959 PM] Sending request 'textDocument/documentHighlight - (1047)'.\nParams: {\"textDocument\":{\"uri\":\"file:\\/\\/\\/Users\\/dppascual\\/projects\\/work\\/bbva\\/titan\\/libs\\/tracing\\/opentelemetry\\/exporters\\/seemas\\/exporter_test.go\"},\"position\":{\"line\":38,\"character\":23}}\r\n\r\n\r\n[Trace - 12:39:51.961 PM] Sending request 'textDocument/codeAction - (1048)'.\nParams: {\"context\":{\"only\":[\"source.organizeImports\"]},\"textDocument\":{\"uri\":\"file:\\/\\/\\/Users\\/dppascual\\/projects\\/work\\/bbva\\/titan\\/libs\\/tracing\\/opentelemetry\\/exporters\\/seemas\\/exporter_test.go\"},\"range\":{\"start\":{\"line\":38,\"character\":23},\"end\":{\"line\":38,\"character\":23}}}\r\n\r\n\r\n"
[ERROR][2023-08-11 12:39:54] .../vim/lsp/rpc.lua:676 "rpc" "/Users/dppascual/.local/share/nvim/mason/bin/gopls" "stderr" "[Trace - 12:39:54.093 PM] Sending notification '$/cancelRequest'.\nParams: {\"id\":1048}\r\n\r\n\r\n"
[ERROR][2023-08-11 12:39:54] .../vim/lsp/rpc.lua:676 "rpc" "/Users/dppascual/.local/share/nvim/mason/bin/gopls" "stderr" "[Trace - 12:39:54.093 PM] Sending request 'textDocument/formatting - (1049)'.\nParams: {\"textDocument\":{\"uri\":\"file:\\/\\/\\/Users\\/dppascual\\/projects\\/work\\/bbva\\/titan\\/libs\\/tracing\\/opentelemetry\\/exporters\\/seemas\\/exporter_test.go\"},\"options\":{\"insertSpaces\":false,\"tabSize\":4}}\r\n\r\n\r\n"
[ERROR][2023-08-11 12:39:55] .../vim/lsp/rpc.lua:676 "rpc" "/Users/dppascual/.local/share/nvim/mason/bin/gopls" "stderr" "[Trace - 12:39:55.153 PM] Sending notification '$/cancelRequest'.\nParams: {\"id\":1049}\r\n\r\n\r\n"
[ERROR][2023-08-11 12:39:55] .../vim/lsp/rpc.lua:676 "rpc" "/Users/dppascual/.local/share/nvim/mason/bin/gopls" "stderr" "[Trace - 12:39:55.164 PM] Sending notification 'textDocument/didSave'.\nParams: {\"textDocument\":{\"uri\":\"file:\\/\\/\\/Users\\/dppascual\\/projects\\/work\\/bbva\\/titan\\/libs\\/tracing\\/opentelemetry\\/exporters\\/seemas\\/exporter_test.go\"}}\r\n\r\n\r\n"
[ERROR][2023-08-11 12:40:11] .../vim/lsp/rpc.lua:676 "rpc" "/Users/dppascual/.local/share/nvim/mason/bin/gopls" "stderr" "[Trace - 12:40:11.313 PM] Sending notification 'workspace/didChangeWatchedFiles'.\nParams: {\"changes\":[{\"type\":1,\"uri\":\"file:\\/\\/\\/Users\\/dppascual\\/projects\\/work\\/bbva\\/titan\\/libs\\/tracing\\/opentelemetry\\/exporters\\/seemas\\/exporter_test.go\"}]}\r\n\r\n\r\n"
[ERROR][2023-08-11 12:40:11] .../vim/lsp/rpc.lua:676 "rpc" "/Users/dppascual/.local/share/nvim/mason/bin/gopls" "stderr" "[Trace - 12:40:11.460 PM] Sending request 'textDocument/documentHighlight - (1050)'.\nParams: {\"textDocument\":{\"uri\":\"file:\\/\\/\\/Users\\/dppascual\\/projects\\/work\\/bbva\\/titan\\/libs\\/tracing\\/opentelemetry\\/exporters\\/seemas\\/exporter_test.go\"},\"position\":{\"line\":38,\"character\":23}}\r\n\r\n\r\n"
[ERROR][2023-08-11 12:40:16] .../vim/lsp/rpc.lua:676 "rpc" "/Users/dppascual/.local/share/nvim/mason/bin/gopls" "stderr" "[Trace - 12:40:16.138 PM] Sending notification '$/cancelRequest'.\nParams: {\"id\":1047}\r\n\r\n\r\n"
[ERROR][2023-08-11 12:40:16] .../vim/lsp/rpc.lua:676 "rpc" "/Users/dppascual/.local/share/nvim/mason/bin/gopls" "stderr" "[Trace - 12:40:16.138 PM] Sending request 'textDocument/documentHighlight - (1051)'.\nParams: {\"textDocument\":{\"uri\":\"file:\\/\\/\\/Users\\/dppascual\\/projects\\/work\\/bbva\\/titan\\/libs\\/tracing\\/opentelemetry\\/exporters\\/seemas\\/exporter_test.go\"},\"position\":{\"line\":38,\"character\":23}}\r\n\r\n\r\n"
[ERROR][2023-08-11 12:40:17] .../vim/lsp/rpc.lua:676 "rpc" "/Users/dppascual/.local/share/nvim/mason/bin/gopls" "stderr" "[Trace - 12:40:17.871 PM] Sending notification '$/cancelRequest'.\nParams: {\"id\":1051}\r\n\r\n\r\n[Trace - 12:40:17.871 PM] Sending request 'textDocument/documentHighlight - (1052)'.\nParams: {\"textDocument\":{\"uri\":\"file:\\/\\/\\/Users\\/dppascual\\/projects\\/work\\/bbva\\/titan\\/libs\\/tracing\\/opentelemetry\\/exporters\\/seemas\\/exporter_test.go\"},\"position\":{\"line\":38,\"character\":10}}\r\n\r\n\r\n"
[ERROR][2023-08-11 12:40:18] .../vim/lsp/rpc.lua:676 "rpc" "/Users/dppascual/.local/share/nvim/mason/bin/gopls" "stderr" "[Trace - 12:40:18.761 PM] Sending notification 'textDocument/didChange'.\nParams: {\"textDocument\":{\"version\":175,\"uri\":\"file:\\/\\/\\/Users\\/dppascual\\/projects\\/work\\/bbva\\/titan\\/libs\\/tracing\\/opentelemetry\\/exporters\\/seemas\\/exporter_test.go\"},\"contentChanges\":[{\"range\":{\"start\":{\"line\":38,\"character\":10},\"end\":{\"line\":38,\"character\":24}},\"rangeLength\":14,\"text\":\"\"}]}\r\n\r\n\r\n[Trace - 12:40:18.761 PM] Sending notification '$/cancelRequest'.\nParams: {\"id\":1052}\r\n\r\n\r\n[Trace - 12:40:18.761 PM] Sending request 'textDocument/documentHighlight - (1053)'.\nParams: {\"textDocument\":{\"uri\":\"file:\\/\\/\\/Users\\/dppascual\\/projects\\/work\\/bbva\\/titan\\/libs\\/tracing\\/opentelemetry\\/exporters\\/seemas\\/exporter_test.go\"},\"position\":{\"line\":38,\"character\":10}}\r\n\r\n\r\n"
[ERROR][2023-08-11 12:40:18] .../vim/lsp/rpc.lua:676 "rpc" "/Users/dppascual/.local/share/nvim/mason/bin/gopls" "stderr" "[Trace - 12:40:18.769 PM] Sending notification '$/cancelRequest'.\nParams: {\"id\":1053}\r\n\r\n\r\n[Trace - 12:40:18.769 PM] Sending request 'textDocument/documentHighlight - (1054)'.\nParams: {\"textDocument\":{\"uri\":\"file:\\/\\/\\/Users\\/dppascual\\/projects\\/work\\/bbva\\/titan\\/libs\\/tracing\\/opentelemetry\\/exporters\\/seemas\\/exporter_test.go\"},\"position\":{\"line\":38,\"character\":10}}\r\n\r\n\r\n"
[ERROR][2023-08-11 12:40:18] .../vim/lsp/rpc.lua:676 "rpc" "/Users/dppascual/.local/share/nvim/mason/bin/gopls" "stderr" "[Trace - 12:40:18.887 PM] Sending request 'textDocument/documentHighlight - (1055)'.\nParams: {\"textDocument\":{\"uri\":\"file:\\/\\/\\/Users\\/dppascual\\/projects\\/work\\/bbva\\/titan\\/libs\\/tracing\\/opentelemetry\\/exporters\\/seemas\\/exporter_test.go\"},\"position\":{\"line\":38,\"character\":10}}\r\n\r\n\r\n"
[ERROR][2023-08-11 12:40:18] .../vim/lsp/rpc.lua:676 "rpc" "/Users/dppascual/.local/share/nvim/mason/bin/gopls" "stderr" "[Trace - 12:40:18.965 PM] Sending request 'textDocument/semanticTokens/full - (1056)'.\nParams: {\"textDocument\":{\"uri\":\"file:\\/\\/\\/Users\\/dppascual\\/projects\\/work\\/bbva\\/titan\\/libs\\/tracing\\/opentelemetry\\/exporters\\/seemas\\/exporter_test.go\"}}\r\n\r\n\r\n"
[ERROR][2023-08-11 12:40:19] .../vim/lsp/rpc.lua:676 "rpc" "/Users/dppascual/.local/share/nvim/mason/bin/gopls" "stderr" "[Trace - 12:40:19.367 PM] Sending notification 'textDocument/didChange'.\nParams: {\"textDocument\":{\"version\":176,\"uri\":\"file:\\/\\/\\/Users\\/dppascual\\/projects\\/work\\/bbva\\/titan\\/libs\\/tracing\\/opentelemetry\\/exporters\\/seemas\\/exporter_test.go\"},\"contentChanges\":[{\"range\":{\"start\":{\"line\":38,\"character\":10},\"end\":{\"line\":38,\"character\":10}},\"rangeLength\":0,\"text\":\"j\"}]}\r\n\r\n\r\n"
[ERROR][2023-08-11 12:40:19] .../vim/lsp/rpc.lua:676 "rpc" "/Users/dppascual/.local/share/nvim/mason/bin/gopls" "stderr" "[Trace - 12:40:19.367 PM] Sending notification '$/cancelRequest'.\nParams: {\"id\":1054}\r\n\r\n\r\n[Trace - 12:40:19.368 PM] Sending request 'textDocument/documentHighlight - (1057)'.\nParams: {\"textDocument\":{\"uri\":\"file:\\/\\/\\/Users\\/dppascual\\/projects\\/work\\/bbva\\/titan\\/libs\\/tracing\\/opentelemetry\\/exporters\\/seemas\\/exporter_test.go\"},\"position\":{\"line\":38,\"character\":11}}\r\n\r\n\r\n[Trace - 12:40:19.370 PM] Sending request 'textDocument/completion - (1058)'.\nParams: {\"context\":{\"triggerKind\":1},\"textDocument\":{\"uri\":\"file:\\/\\/\\/Users\\/dppascual\\/projects\\/work\\/bbva\\/titan\\/libs\\/tracing\\/opentelemetry\\/exporters\\/seemas\\/exporter_test.go\"},\"position\":{\"line\":38,\"character\":11}}\r\n\r\n\r\n"
[ERROR][2023-08-11 12:40:19] .../vim/lsp/rpc.lua:676 "rpc" "/Users/dppascual/.local/share/nvim/mason/bin/gopls" "stderr" "[Trace - 12:40:19.485 PM] Sending notification '$/cancelRequest'.\nParams: {\"id\":1057}\r\n\r\n\r\n[Trace - 12:40:19.485 PM] Sending notification 'textDocument/didChange'.\nParams: {\"textDocument\":{\"version\":177,\"uri\":\"file:\\/\\/\\/Users\\/dppascual\\/projects\\/work\\/bbva\\/titan\\/libs\\/tracing\\/opentelemetry\\/exporters\\/seemas\\/exporter_test.go\"},\"contentChanges\":[{\"range\":{\"start\":{\"line\":38,\"character\":11},\"end\":{\"line\":38,\"character\":11}},\"rangeLength\":0,\"text\":\"s\"}]}\r\n\r\n\r\n[Trace - 12:40:19.485 PM] Sending request 'textDocument/documentHighlight - (1059)'.\nParams: {\"textDocument\":{\"uri\":\"file:\\/\\/\\/Users\\/dppascual\\/projects\\/work\\/bbva\\/titan\\/libs\\/tracing\\/opentelemetry\\/exporters\\/seemas\\/exporter_test.go\"},\"position\":{\"line\":38,\"character\":12}}\r\n\r\n\r\n"
[ERROR][2023-08-11 12:40:19] .../vim/lsp/rpc.lua:676 "rpc" "/Users/dppascual/.local/share/nvim/mason/bin/gopls" "stderr" "[Trace - 12:40:19.603 PM] Sending request 'textDocument/documentHighlight - (1060)'.\nParams: {\"textDocument\":{\"uri\":\"file:\\/\\/\\/Users\\/dppascual\\/projects\\/work\\/bbva\\/titan\\/libs\\/tracing\\/opentelemetry\\/exporters\\/seemas\\/exporter_test.go\"},\"position\":{\"line\":38,\"character\":12}}\r\n\r\n\r\n"
[ERROR][2023-08-11 12:40:19] .../vim/lsp/rpc.lua:676 "rpc" "/Users/dppascual/.local/share/nvim/mason/bin/gopls" "stderr" "[Trace - 12:40:19.636 PM] Sending notification 'textDocument/didChange'.\nParams: {\"textDocument\":{\"version\":178,\"uri\":\"file:\\/\\/\\/Users\\/dppascual\\/projects\\/work\\/bbva\\/titan\\/libs\\/tracing\\/opentelemetry\\/exporters\\/seemas\\/exporter_test.go\"},\"contentChanges\":[{\"range\":{\"start\":{\"line\":38,\"character\":12},\"end\":{\"line\":38,\"character\":12}},\"rangeLength\":0,\"text\":\"o\"}]}\r\n\r\n\r\n"
[ERROR][2023-08-11 12:40:19] .../vim/lsp/rpc.lua:676 "rpc" "/Users/dppascual/.local/share/nvim/mason/bin/gopls" "stderr" "[Trace - 12:40:19.636 PM] Sending notification '$/cancelRequest'.\nParams: {\"id\":1059}\r\n\r\n\r\n[Trace - 12:40:19.637 PM] Sending request 'textDocument/documentHighlight - (1061)'.\nParams: {\"textDocument\":{\"uri\":\"file:\\/\\/\\/Users\\/dppascual\\/projects\\/work\\/bbva\\/titan\\/libs\\/tracing\\/opentelemetry\\/exporters\\/seemas\\/exporter_test.go\"},\"position\":{\"line\":38,\"character\":13}}\r\n\r\n\r\n"
[ERROR][2023-08-11 12:40:19] .../vim/lsp/rpc.lua:676 "rpc" "/Users/dppascual/.local/share/nvim/mason/bin/gopls" "stderr" "[Trace - 12:40:19.742 PM] Sending notification '$/cancelRequest'.\nParams: {\"id\":1061}\r\n\r\n\r\n[Trace - 12:40:19.742 PM] Sending notification 'textDocument/didChange'.\nParams: {\"textDocument\":{\"version\":179,\"uri\":\"file:\\/\\/\\/Users\\/dppascual\\/projects\\/work\\/bbva\\/titan\\/libs\\/tracing\\/opentelemetry\\/exporters\\/seemas\\/exporter_test.go\"},\"contentChanges\":[{\"range\":{\"start\":{\"line\":38,\"character\":13},\"end\":{\"line\":38,\"character\":13}},\"rangeLength\":0,\"text\":\"n\"}]}\r\n\r\n\r\n[Trace - 12:40:19.742 PM] Sending request 'textDocument/documentHighlight - (1062)'.\nParams: {\"textDocument\":{\"uri\":\"file:\\/\\/\\/Users\\/dppascual\\/projects\\/work\\/bbva\\/titan\\/libs\\/tracing\\/opentelemetry\\/exporters\\/seemas\\/exporter_test.go\"},\"position\":{\"line\":38,\"character\":14}}\r\n\r\n\r\n"
[ERROR][2023-08-11 12:40:19] .../vim/lsp/rpc.lua:676 "rpc" "/Users/dppascual/.local/share/nvim/mason/bin/gopls" "stderr" "[Trace - 12:40:19.858 PM] Sending request 'textDocument/documentHighlight - (1063)'.\nParams: {\"textDocument\":{\"uri\":\"file:\\/\\/\\/Users\\/dppascual\\/projects\\/work\\/bbva\\/titan\\/libs\\/tracing\\/opentelemetry\\/exporters\\/seemas\\/exporter_test.go\"},\"position\":{\"line\":38,\"character\":14}}\r\n\r\n\r\n"
[ERROR][2023-08-11 12:40:19] .../vim/lsp/rpc.lua:676 "rpc" "/Users/dppascual/.local/share/nvim/mason/bin/gopls" "stderr" "[Trace - 12:40:19.942 PM] Sending notification '$/cancelRequest'.\nParams: {\"id\":1056}\r\n\r\n\r\n"
[ERROR][2023-08-11 12:40:19] .../vim/lsp/rpc.lua:676 "rpc" "/Users/dppascual/.local/share/nvim/mason/bin/gopls" "stderr" "[Trace - 12:40:19.942 PM] Sending request 'textDocument/semanticTokens/full - (1064)'.\nParams: {\"textDocument\":{\"uri\":\"file:\\/\\/\\/Users\\/dppascual\\/projects\\/work\\/bbva\\/titan\\/libs\\/tracing\\/opentelemetry\\/exporters\\/seemas\\/exporter_test.go\"}}\r\n\r\n\r\n"
[ERROR][2023-08-11 12:40:20] .../vim/lsp/rpc.lua:676 "rpc" "/Users/dppascual/.local/share/nvim/mason/bin/gopls" "stderr" "[Trace - 12:40:20.056 PM] Sending notification 'textDocument/didChange'.\nParams: {\"textDocument\":{\"version\":180,\"uri\":\"file:\\/\\/\\/Users\\/dppascual\\/projects\\/work\\/bbva\\/titan\\/libs\\/tracing\\/opentelemetry\\/exporters\\/seemas\\/exporter_test.go\"},\"contentChanges\":[{\"range\":{\"start\":{\"line\":38,\"character\":14},\"end\":{\"line\":38,\"character\":14}},\"rangeLength\":0,\"text\":\".\"}]}\r\n\r\n\r\n"
[ERROR][2023-08-11 12:40:20] .../vim/lsp/rpc.lua:676 "rpc" "/Users/dppascual/.local/share/nvim/mason/bin/gopls" "stderr" "[Trace - 12:40:20.057 PM] Sending notification '$/cancelRequest'.\nParams: {\"id\":1062}\r\n\r\n\r\n[Trace - 12:40:20.057 PM] Sending request 'textDocument/documentHighlight - (1065)'.\nParams: {\"textDocument\":{\"uri\":\"file:\\/\\/\\/Users\\/dppascual\\/projects\\/work\\/bbva\\/titan\\/libs\\/tracing\\/opentelemetry\\/exporters\\/seemas\\/exporter_test.go\"},\"position\":{\"line\":38,\"character\":15}}\r\n\r\n\r\n[Trace - 12:40:20.059 PM] Sending notification '$/cancelRequest'.\nParams: {\"id\":1058}\r\n\r\n\r\n[Trace - 12:40:20.059 PM] Sending request 'textDocument/completion - (1066)'.\nParams: {\"context\":{\"triggerKind\":2,\"triggerCharacter\":\".\"},\"textDocument\":{\"uri\":\"file:\\/\\/\\/Users\\/dppascual\\/projects\\/work\\/bbva\\/titan\\/libs\\/tracing\\/opentelemetry\\/exporters\\/seemas\\/exporter_test.go\"},\"position\":{\"line\":38,\"character\":15}}\r\n\r\n\r\n"
[ERROR][2023-08-11 12:40:20] .../vim/lsp/rpc.lua:676 "rpc" "/Users/dppascual/.local/share/nvim/mason/bin/gopls" "stderr" "[Trace - 12:40:20.178 PM] Sending request 'textDocument/documentHighlight - (1067)'.\nParams: {\"textDocument\":{\"uri\":\"file:\\/\\/\\/Users\\/dppascual\\/projects\\/work\\/bbva\\/titan\\/libs\\/tracing\\/opentelemetry\\/exporters\\/seemas\\/exporter_test.go\"},\"position\":{\"line\":38,\"character\":15}}\r\n\r\n\r\n"
[ERROR][2023-08-11 12:40:20] .../vim/lsp/rpc.lua:676 "rpc" "/Users/dppascual/.local/share/nvim/mason/bin/gopls" "stderr" "[Trace - 12:40:20.261 PM] Sending notification '$/cancelRequest'.\nParams: {\"id\":1064}\r\n\r\n\r\n"
[ERROR][2023-08-11 12:40:20] .../vim/lsp/rpc.lua:676 "rpc" "/Users/dppascual/.local/share/nvim/mason/bin/gopls" "stderr" "[Trace - 12:40:20.261 PM] Sending request 'textDocument/semanticTokens/full - (1068)'.\nParams: {\"textDocument\":{\"uri\":\"file:\\/\\/\\/Users\\/dppascual\\/projects\\/work\\/bbva\\/titan\\/libs\\/tracing\\/opentelemetry\\/exporters\\/seemas\\/exporter_test.go\"}}\r\n\r\n\r\n"
[ERROR][2023-08-11 12:40:22] .../vim/lsp/rpc.lua:676 "rpc" "/Users/dppascual/.local/share/nvim/mason/bin/gopls" "stderr" "[Trace - 12:40:22.595 PM] Sending notification 'textDocument/didChange'.\nParams: {\"textDocument\":{\"version\":181,\"uri\":\"file:\\/\\/\\/Users\\/dppascual\\/projects\\/work\\/bbva\\/titan\\/libs\\/tracing\\/opentelemetry\\/exporters\\/seemas\\/exporter_test.go\"},\"contentChanges\":[{\"range\":{\"start\":{\"line\":38,\"character\":15},\"end\":{\"line\":38,\"character\":15}},\"rangeLength\":0,\"text\":\"E\"}]}\r\n\r\n\r\n"
[ERROR][2023-08-11 12:40:22] .../vim/lsp/rpc.lua:676 "rpc" "/Users/dppascual/.local/share/nvim/mason/bin/gopls" "stderr" "[Trace - 12:40:22.595 PM] Sending notification '$/cancelRequest'.\nParams: {\"id\":1065}\r\n\r\n\r\n[Trace - 12:40:22.596 PM] Sending request 'textDocument/documentHighlight - (1069)'.\nParams: {\"textDocument\":{\"uri\":\"file:\\/\\/\\/Users\\/dppascual\\/projects\\/work\\/bbva\\/titan\\/libs\\/tracing\\/opentelemetry\\/exporters\\/seemas\\/exporter_test.go\"},\"position\":{\"line\":38,\"character\":16}}\r\n\r\n\r\n"
[ERROR][2023-08-11 12:40:22] .../vim/lsp/rpc.lua:676 "rpc" "/Users/dppascual/.local/share/nvim/mason/bin/gopls" "stderr" "[Trace - 12:40:22.783 PM] Sending request 'textDocument/documentHighlight - (1070)'.\nParams: {\"textDocument\":{\"uri\":\"file:\\/\\/\\/Users\\/dppascual\\/projects\\/work\\/bbva\\/titan\\/libs\\/tracing\\/opentelemetry\\/exporters\\/seemas\\/exporter_test.go\"},\"position\":{\"line\":38,\"character\":16}}\r\n\r\n\r\n"
[ERROR][2023-08-11 12:40:22] .../vim/lsp/rpc.lua:676 "rpc" "/Users/dppascual/.local/share/nvim/mason/bin/gopls" "stderr" "[Trace - 12:40:22.799 PM] Sending notification '$/cancelRequest'.\nParams: {\"id\":1068}\r\n\r\n\r\n"
[ERROR][2023-08-11 12:40:22] .../vim/lsp/rpc.lua:676 "rpc" "/Users/dppascual/.local/share/nvim/mason/bin/gopls" "stderr" "[Trace - 12:40:22.799 PM] Sending request 'textDocument/semanticTokens/full - (1071)'.\nParams: {\"textDocument\":{\"uri\":\"file:\\/\\/\\/Users\\/dppascual\\/projects\\/work\\/bbva\\/titan\\/libs\\/tracing\\/opentelemetry\\/exporters\\/seemas\\/exporter_test.go\"}}\r\n\r\n\r\n"
[ERROR][2023-08-11 12:40:23] .../vim/lsp/rpc.lua:676 "rpc" "/Users/dppascual/.local/share/nvim/mason/bin/gopls" "stderr" "[Trace - 12:40:23.116 PM] Sending notification 'textDocument/didChange'.\nParams: {\"textDocument\":{\"version\":182,\"uri\":\"file:\\/\\/\\/Users\\/dppascual\\/projects\\/work\\/bbva\\/titan\\/libs\\/tracing\\/opentelemetry\\/exporters\\/seemas\\/exporter_test.go\"},\"contentChanges\":[{\"range\":{\"start\":{\"line\":38,\"character\":16},\"end\":{\"line\":38,\"character\":16}},\"rangeLength\":0,\"text\":\"n\"}]}\r\n\r\n\r\n"
[ERROR][2023-08-11 12:40:23] .../vim/lsp/rpc.lua:676 "rpc" "/Users/dppascual/.local/share/nvim/mason/bin/gopls" "stderr" "[Trace - 12:40:23.117 PM] Sending notification '$/cancelRequest'.\nParams: {\"id\":1069}\r\n\r\n\r\n[Trace - 12:40:23.117 PM] Sending request 'textDocument/documentHighlight - (1072)'.\nParams: {\"textDocument\":{\"uri\":\"file:\\/\\/\\/Users\\/dppascual\\/projects\\/work\\/bbva\\/titan\\/libs\\/tracing\\/opentelemetry\\/exporters\\/seemas\\/exporter_test.go\"},\"position\":{\"line\":38,\"character\":17}}\r\n\r\n\r\n"
[ERROR][2023-08-11 12:40:23] .../vim/lsp/rpc.lua:676 "rpc" "/Users/dppascual/.local/share/nvim/mason/bin/gopls" "stderr" "[Trace - 12:40:23.284 PM] Sending request 'textDocument/documentHighlight - (1073)'.\nParams: {\"textDocument\":{\"uri\":\"file:\\/\\/\\/Users\\/dppascual\\/projects\\/work\\/bbva\\/titan\\/libs\\/tracing\\/opentelemetry\\/exporters\\/seemas\\/exporter_test.go\"},\"position\":{\"line\":38,\"character\":17}}\r\n\r\n\r\n"
[ERROR][2023-08-11 12:40:23] .../vim/lsp/rpc.lua:676 "rpc" "/Users/dppascual/.local/share/nvim/mason/bin/gopls" "stderr" "[Trace - 12:40:23.318 PM] Sending notification '$/cancelRequest'.\nParams: {\"id\":1071}\r\n\r\n\r\n"
[ERROR][2023-08-11 12:40:23] .../vim/lsp/rpc.lua:676 "rpc" "/Users/dppascual/.local/share/nvim/mason/bin/gopls" "stderr" "[Trace - 12:40:23.318 PM] Sending request 'textDocument/semanticTokens/full - (1074)'.\nParams: {\"textDocument\":{\"uri\":\"file:\\/\\/\\/Users\\/dppascual\\/projects\\/work\\/bbva\\/titan\\/libs\\/tracing\\/opentelemetry\\/exporters\\/seemas\\/exporter_test.go\"}}\r\n\r\n\r\n"
[ERROR][2023-08-11 12:40:23] .../vim/lsp/rpc.lua:676 "rpc" "/Users/dppascual/.local/share/nvim/mason/bin/gopls" "stderr" "[Trace - 12:40:23.645 PM] Sending notification 'textDocument/didChange'.\nParams: {\"textDocument\":{\"version\":183,\"uri\":\"file:\\/\\/\\/Users\\/dppascual\\/projects\\/work\\/bbva\\/titan\\/libs\\/tracing\\/opentelemetry\\/exporters\\/seemas\\/exporter_test.go\"},\"contentChanges\":[{\"range\":{\"start\":{\"line\":38,\"character\":17},\"end\":{\"line\":38,\"character\":17}},\"rangeLength\":0,\"text\":\"c\"}]}\r\n\r\n\r\n"
[ERROR][2023-08-11 12:40:23] .../vim/lsp/rpc.lua:676 "rpc" "/Users/dppascual/.local/share/nvim/mason/bin/gopls" "stderr" "[Trace - 12:40:23.645 PM] Sending notification '$/cancelRequest'.\nParams: {\"id\":1072}\r\n\r\n\r\n[Trace - 12:40:23.645 PM] Sending request 'textDocument/documentHighlight - (1075)'.\nParams: {\"textDocument\":{\"uri\":\"file:\\/\\/\\/Users\\/dppascual\\/projects\\/work\\/bbva\\/titan\\/libs\\/tracing\\/opentelemetry\\/exporters\\/seemas\\/exporter_test.go\"},\"position\":{\"line\":38,\"character\":18}}\r\n\r\n\r\n"
[ERROR][2023-08-11 12:40:23] .../vim/lsp/rpc.lua:676 "rpc" "/Users/dppascual/.local/share/nvim/mason/bin/gopls" "stderr" "[Trace - 12:40:23.731 PM] Sending notification '$/cancelRequest'.\nParams: {\"id\":1075}\r\n\r\n\r\n[Trace - 12:40:23.731 PM] Sending notification 'textDocument/didChange'.\nParams: {\"textDocument\":{\"version\":184,\"uri\":\"file:\\/\\/\\/Users\\/dppascual\\/projects\\/work\\/bbva\\/titan\\/libs\\/tracing\\/opentelemetry\\/exporters\\/seemas\\/exporter_test.go\"},\"contentChanges\":[{\"range\":{\"start\":{\"line\":38,\"character\":18},\"end\":{\"line\":38,\"character\":18}},\"rangeLength\":0,\"text\":\"o\"}]}\r\n\r\n\r\n[Trace - 12:40:23.731 PM] Sending request 'textDocument/documentHighlight - (1076)'.\nParams: {\"textDocument\":{\"uri\":\"file:\\/\\/\\/Users\\/dppascual\\/projects\\/work\\/bbva\\/titan\\/libs\\/tracing\\/opentelemetry\\/exporters\\/seemas\\/exporter_test.go\"},\"position\":{\"line\":38,\"character\":19}}\r\n\r\n\r\n"
[ERROR][2023-08-11 12:40:23] .../vim/lsp/rpc.lua:676 "rpc" "/Users/dppascual/.local/share/nvim/mason/bin/gopls" "stderr" "[Trace - 12:40:23.850 PM] Sending request 'textDocument/documentHighlight - (1077)'.\nParams: {\"textDocument\":{\"uri\":\"file:\\/\\/\\/Users\\/dppascual\\/projects\\/work\\/bbva\\/titan\\/libs\\/tracing\\/opentelemetry\\/exporters\\/seemas\\/exporter_test.go\"},\"position\":{\"line\":38,\"character\":19}}\r\n\r\n\r\n"
[ERROR][2023-08-11 12:40:23] .../vim/lsp/rpc.lua:676 "rpc" "/Users/dppascual/.local/share/nvim/mason/bin/gopls" "stderr" "[Trace - 12:40:23.886 PM] Sending notification 'textDocument/didChange'.\nParams: {\"textDocument\":{\"version\":185,\"uri\":\"file:\\/\\/\\/Users\\/dppascual\\/projects\\/work\\/bbva\\/titan\\/libs\\/tracing\\/opentelemetry\\/exporters\\/seemas\\/exporter_test.go\"},\"contentChanges\":[{\"range\":{\"start\":{\"line\":38,\"character\":19},\"end\":{\"line\":38,\"character\":19}},\"rangeLength\":0,\"text\":\"d\"}]}\r\n\r\n\r\n"
[ERROR][2023-08-11 12:40:23] .../vim/lsp/rpc.lua:676 "rpc" "/Users/dppascual/.local/share/nvim/mason/bin/gopls" "stderr" "[Trace - 12:40:23.886 PM] Sending notification '$/cancelRequest'.\nParams: {\"id\":1076}\r\n\r\n\r\n[Trace - 12:40:23.886 PM] Sending request 'textDocument/documentHighlight - (1078)'.\nParams: {\"textDocument\":{\"uri\":\"file:\\/\\/\\/Users\\/dppascual\\/projects\\/work\\/bbva\\/titan\\/libs\\/tracing\\/opentelemetry\\/exporters\\/seemas\\/exporter_test.go\"},\"position\":{\"line\":38,\"character\":20}}\r\n\r\n\r\n"
[ERROR][2023-08-11 12:40:24] .../vim/lsp/rpc.lua:676 "rpc" "/Users/dppascual/.local/share/nvim/mason/bin/gopls" "stderr" "[Trace - 12:40:24.020 PM] Sending request 'textDocument/documentHighlight - (1079)'.\nParams: {\"textDocument\":{\"uri\":\"file:\\/\\/\\/Users\\/dppascual\\/projects\\/work\\/bbva\\/titan\\/libs\\/tracing\\/opentelemetry\\/exporters\\/seemas\\/exporter_test.go\"},\"position\":{\"line\":38,\"character\":20}}\r\n\r\n\r\n"
[ERROR][2023-08-11 12:40:24] .../vim/lsp/rpc.lua:676 "rpc" "/Users/dppascual/.local/share/nvim/mason/bin/gopls" "stderr" "[Trace - 12:40:24.081 PM] Sending notification 'textDocument/didChange'.\nParams: {\"textDocument\":{\"version\":186,\"uri\":\"file:\\/\\/\\/Users\\/dppascual\\/projects\\/work\\/bbva\\/titan\\/libs\\/tracing\\/opentelemetry\\/exporters\\/seemas\\/exporter_test.go\"},\"contentChanges\":[{\"range\":{\"start\":{\"line\":38,\"character\":20},\"end\":{\"line\":38,\"character\":20}},\"rangeLength\":0,\"text\":\"e\"}]}\r\n\r\n\r\n"
[ERROR][2023-08-11 12:40:24] .../vim/lsp/rpc.lua:676 "rpc" "/Users/dppascual/.local/share/nvim/mason/bin/gopls" "stderr" "[Trace - 12:40:24.082 PM] Sending notification '$/cancelRequest'.\nParams: {\"id\":1078}\r\n\r\n\r\n[Trace - 12:40:24.082 PM] Sending request 'textDocument/documentHighlight - (1080)'.\nParams: {\"textDocument\":{\"uri\":\"file:\\/\\/\\/Users\\/dppascual\\/projects\\/work\\/bbva\\/titan\\/libs\\/tracing\\/opentelemetry\\/exporters\\/seemas\\/exporter_test.go\"},\"position\":{\"line\":38,\"character\":21}}\r\n\r\n\r\n"
[ERROR][2023-08-11 12:40:24] .../vim/lsp/rpc.lua:676 "rpc" "/Users/dppascual/.local/share/nvim/mason/bin/gopls" "stderr" "[Trace - 12:40:24.140 PM] Sending notification '$/cancelRequest'.\nParams: {\"id\":1080}\r\n\r\n\r\n[Trace - 12:40:24.140 PM] Sending notification 'textDocument/didChange'.\nParams: {\"textDocument\":{\"version\":187,\"uri\":\"file:\\/\\/\\/Users\\/dppascual\\/projects\\/work\\/bbva\\/titan\\/libs\\/tracing\\/opentelemetry\\/exporters\\/seemas\\/exporter_test.go\"},\"contentChanges\":[{\"range\":{\"start\":{\"line\":38,\"character\":21},\"end\":{\"line\":38,\"character\":21}},\"rangeLength\":0,\"text\":\"r\"}]}\r\n\r\n\r\n[Trace - 12:40:24.140 PM] Sending request 'textDocument/documentHighlight - (1081)'.\nParams: {\"textDocument\":{\"uri\":\"file:\\/\\/\\/Users\\/dppascual\\/projects\\/work\\/bbva\\/titan\\/libs\\/tracing\\/opentelemetry\\/exporters\\/seemas\\/exporter_test.go\"},\"position\":{\"line\":38,\"character\":22}}\r\n\r\n\r\n"
[ERROR][2023-08-11 12:40:24] .../vim/lsp/rpc.lua:676 "rpc" "/Users/dppascual/.local/share/nvim/mason/bin/gopls" "stderr" "[Trace - 12:40:24.259 PM] Sending request 'textDocument/documentHighlight - (1082)'.\nParams: {\"textDocument\":{\"uri\":\"file:\\/\\/\\/Users\\/dppascual\\/projects\\/work\\/bbva\\/titan\\/libs\\/tracing\\/opentelemetry\\/exporters\\/seemas\\/exporter_test.go\"},\"position\":{\"line\":38,\"character\":22}}\r\n\r\n\r\n"
[ERROR][2023-08-11 12:40:24] .../vim/lsp/rpc.lua:676 "rpc" "/Users/dppascual/.local/share/nvim/mason/bin/gopls" "stderr" "[Trace - 12:40:24.341 PM] Sending notification '$/cancelRequest'.\nParams: {\"id\":1074}\r\n\r\n\r\n"
[ERROR][2023-08-11 12:40:24] .../vim/lsp/rpc.lua:676 "rpc" "/Users/dppascual/.local/share/nvim/mason/bin/gopls" "stderr" "[Trace - 12:40:24.341 PM] Sending request 'textDocument/semanticTokens/full - (1083)'.\nParams: {\"textDocument\":{\"uri\":\"file:\\/\\/\\/Users\\/dppascual\\/projects\\/work\\/bbva\\/titan\\/libs\\/tracing\\/opentelemetry\\/exporters\\/seemas\\/exporter_test.go\"}}\r\n\r\n\r\n"
[ERROR][2023-08-11 12:40:26] .../vim/lsp/rpc.lua:676 "rpc" "/Users/dppascual/.local/share/nvim/mason/bin/gopls" "stderr" "[Trace - 12:40:26.281 PM] Sending notification '$/cancelRequest'.\nParams: {\"id\":1081}\r\n\r\n\r\n[Trace - 12:40:26.281 PM] Sending request 'textDocument/documentHighlight - (1084)'.\nParams: {\"textDocument\":{\"uri\":\"file:\\/\\/\\/Users\\/dppascual\\/projects\\/work\\/bbva\\/titan\\/libs\\/tracing\\/opentelemetry\\/exporters\\/seemas\\/exporter_test.go\"},\"position\":{\"line\":38,\"character\":21}}\r\n\r\n\r\n"
[ERROR][2023-08-11 12:40:26] .../vim/lsp/rpc.lua:676 "rpc" "/Users/dppascual/.local/share/nvim/mason/bin/gopls" "stderr" "[Trace - 12:40:26.282 PM] Sending notification '$/cancelRequest'.\nParams: {\"id\":1084}\r\n\r\n\r\n[Trace - 12:40:26.282 PM] Sending request 'textDocument/documentHighlight - (1085)'.\nParams: {\"textDocument\":{\"uri\":\"file:\\/\\/\\/Users\\/dppascual\\/projects\\/work\\/bbva\\/titan\\/libs\\/tracing\\/opentelemetry\\/exporters\\/seemas\\/exporter_test.go\"},\"position\":{\"line\":38,\"character\":21}}\r\n\r\n\r\n"
[ERROR][2023-08-11 12:40:26] .../vim/lsp/rpc.lua:676 "rpc" "/Users/dppascual/.local/share/nvim/mason/bin/gopls" "stderr" "[Trace - 12:40:26.394 PM] Sending request 'textDocument/documentHighlight - (1086)'.\nParams: {\"textDocument\":{\"uri\":\"file:\\/\\/\\/Users\\/dppascual\\/projects\\/work\\/bbva\\/titan\\/libs\\/tracing\\/opentelemetry\\/exporters\\/seemas\\/exporter_test.go\"},\"position\":{\"line\":38,\"character\":21}}\r\n\r\n\r\n"
[ERROR][2023-08-11 12:40:26] .../vim/lsp/rpc.lua:676 "rpc" "/Users/dppascual/.local/share/nvim/mason/bin/gopls" "stderr" "[Trace - 12:40:26.702 PM] Sending notification '$/cancelRequest'.\nParams: {\"id\":1085}\r\n\r\n\r\n[Trace - 12:40:26.702 PM] Sending request 'textDocument/documentHighlight - (1087)'.\nParams: {\"textDocument\":{\"uri\":\"file:\\/\\/\\/Users\\/dppascual\\/projects\\/work\\/bbva\\/titan\\/libs\\/tracing\\/opentelemetry\\/exporters\\/seemas\\/exporter_test.go\"},\"position\":{\"line\":37,\"character\":24}}\r\n\r\n\r\n"
[ERROR][2023-08-11 12:40:26] .../vim/lsp/rpc.lua:676 "rpc" "/Users/dppascual/.local/share/nvim/mason/bin/gopls" "stderr" "[Trace - 12:40:26.808 PM] Sending request 'textDocument/documentHighlight - (1088)'.\nParams: {\"textDocument\":{\"uri\":\"file:\\/\\/\\/Users\\/dppascual\\/projects\\/work\\/bbva\\/titan\\/libs\\/tracing\\/opentelemetry\\/exporters\\/seemas\\/exporter_test.go\"},\"position\":{\"line\":37,\"character\":24}}\r\n\r\n\r\n"
[ERROR][2023-08-11 12:40:26] .../vim/lsp/rpc.lua:676 "rpc" "/Users/dppascual/.local/share/nvim/mason/bin/gopls" "stderr" "[Trace - 12:40:26.926 PM] Sending notification '$/cancelRequest'.\nParams: {\"id\":1087}\r\n\r\n\r\n[Trace - 12:40:26.926 PM] Sending request 'textDocument/documentHighlight - (1089)'.\nParams: {\"textDocument\":{\"uri\":\"file:\\/\\/\\/Users\\/dppascual\\/projects\\/work\\/bbva\\/titan\\/libs\\/tracing\\/opentelemetry\\/exporters\\/seemas\\/exporter_test.go\"},\"position\":{\"line\":38,\"character\":21}}\r\n\r\n\r\n"
[ERROR][2023-08-11 12:40:27] .../vim/lsp/rpc.lua:676 "rpc" "/Users/dppascual/.local/share/nvim/mason/bin/gopls" "stderr" "[Trace - 12:40:27.033 PM] Sending request 'textDocument/documentHighlight - (1090)'.\nParams: {\"textDocument\":{\"uri\":\"file:\\/\\/\\/Users\\/dppascual\\/projects\\/work\\/bbva\\/titan\\/libs\\/tracing\\/opentelemetry\\/exporters\\/seemas\\/exporter_test.go\"},\"position\":{\"line\":38,\"character\":21}}\r\n\r\n\r\n"
[ERROR][2023-08-11 12:40:29] .../vim/lsp/rpc.lua:676 "rpc" "/Users/dppascual/.local/share/nvim/mason/bin/gopls" "stderr" "[Trace - 12:40:29.377 PM] Sending request 'textDocument/codeAction - (1091)'.\nParams: {\"context\":{\"diagnostics\":[]},\"textDocument\":{\"uri\":\"file:\\/\\/\\/Users\\/dppascual\\/projects\\/work\\/bbva\\/titan\\/libs\\/tracing\\/opentelemetry\\/exporters\\/seemas\\/exporter_test.go\"},\"range\":{\"start\":{\"line\":38,\"character\":21},\"end\":{\"line\":38,\"character\":21}}}\r\n\r\n\r\n"
[ERROR][2023-08-11 12:40:30] .../vim/lsp/rpc.lua:676 "rpc" "/Users/dppascual/.local/share/nvim/mason/bin/gopls" "stderr" "[Trace - 12:40:30.448 PM] Sending notification '$/cancelRequest'.\nParams: {\"id\":1091}\r\n\r\n\r\n"