summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Rodríguez Rivero <[email protected]>2022-10-26 16:19:25 +0200
committerGitHub <[email protected]>2022-10-26 16:19:25 +0200
commitb8be029eb91b47513d35b0089bde264392ae0f8c (patch)
tree306a2b0d9d00c6df1db7f5dde3e819fd7e6c4409
parent77640e8064208400f6d00da7b6ebae7684d4d486 (diff)
fix: call proper log function in notify override (#3337)
-rw-r--r--lua/lvim/core/log.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/lua/lvim/core/log.lua b/lua/lvim/core/log.lua
index d88a659b..a0af3683 100644
--- a/lua/lvim/core/log.lua
+++ b/lua/lvim/core/log.lua
@@ -87,8 +87,8 @@ function Log:init()
-- https://github.com/neovim/neovim/blob/685cf398130c61c158401b992a1893c2405cd7d2/runtime/lua/vim/lsp/log.lua#L5
vim_log_level = vim_log_level + 1
end
-
- self:info(vim_log_level, msg)
+
+ self:add_entry(vim_log_level, msg)
end
end