From 2608f2ca9c2fa64f0a5a61e7bbf4b0ae0b49cfcb Mon Sep 17 00:00:00 2001 From: weirdgiraffe Date: Mon, 19 Feb 2024 09:53:34 +0100 Subject: [PATCH] fixup: logging for setup method --- lua/go/codelens.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/go/codelens.lua b/lua/go/codelens.lua index 3e0ba80..8c44867 100644 --- a/lua/go/codelens.lua +++ b/lua/go/codelens.lua @@ -32,7 +32,7 @@ end local M = {} local enabled function M.setup() - utils.log('enable codelens') + log('setup codelens, enabled=', _GO_NVIM_CFG.lsp_codelens) vim.api.nvim_set_hl(0, 'LspCodeLens', { link = 'WarningMsg', default = true }) vim.api.nvim_set_hl(0, 'LspCodeLensText', { link = 'WarningMsg', default = true }) vim.api.nvim_set_hl(0, 'LspCodeLensSign', { link = 'WarningMsg', default = true })