From 36683e3646cf83bea9040527bf9746058d4210bf Mon Sep 17 00:00:00 2001 From: ray-x Date: Mon, 11 Oct 2021 16:28:49 +1100 Subject: [PATCH] remove logs and update golang version --- .github/workflows/ci.yml | 2 +- lua/navigator/diagnostics.lua | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 22c10fb..2022e39 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,7 +22,7 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-go@v2 with: - go-version: "^1.16.1" # The Go version to download (if necessary) and use. + go-version: "^1.17.2" # The Go version to download (if necessary) and use. - run: date +%F > todays-date - name: Restore cache for today's nightly. uses: actions/cache@v2 diff --git a/lua/navigator/diagnostics.lua b/lua/navigator/diagnostics.lua index 22254b5..b506079 100644 --- a/lua/navigator/diagnostics.lua +++ b/lua/navigator/diagnostics.lua @@ -372,7 +372,7 @@ function M.update_err_marker() local uri = vim.uri_from_bufnr(bufnr) local result = {diagnostics = errors, uri = errors[1].uri or uri} - log(result) + trace(result) local marker = update_err_marker_async() marker(result, {bufnr = bufnr, method = 'textDocument/publishDiagnostics'}) end