Skip to content

Commit

Permalink
fix: less loud error on unknown LSP method
Browse files Browse the repository at this point in the history
  • Loading branch information
benlubas committed Sep 4, 2024
1 parent 2ae00fc commit 6c65ae2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/neorg/modules/external/interim-ls/module.lua
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ module.private.start_lsp = function()
if module.private.handlers[method] then
module.private.handlers[method](params, callback, notify_reply_callback)
else
log.warn("Unexpected LSP method: " .. method)
log.debug("Unexpected LSP method: " .. method)
end
end,
notify = function(_method, _params) end,
Expand Down

0 comments on commit 6c65ae2

Please sign in to comment.