From 04c7b550384b2246d37c1a893c0f858bc332cb8b Mon Sep 17 00:00:00 2001 From: Michael Lingelbach Date: Tue, 30 Nov 2021 03:55:42 -0500 Subject: [PATCH] fix(lsp): change rpc start notify level to warn (#16467) This is less obtrusive, and does not require a confirmation to dismiss --- runtime/lua/vim/lsp/rpc.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/lua/vim/lsp/rpc.lua b/runtime/lua/vim/lsp/rpc.lua index de03427bf7..1fb75ddeb7 100644 --- a/runtime/lua/vim/lsp/rpc.lua +++ b/runtime/lua/vim/lsp/rpc.lua @@ -329,7 +329,7 @@ local function start(cmd, cmd_args, dispatchers, extra_spawn_params) else msg = msg .. string.format(" with error message: %s", pid) end - vim.notify(msg, vim.log.levels.ERROR) + vim.notify(msg, vim.log.levels.WARN) return end end