diff options
author | Hirokazu Hata <h.hata.ai.t@gmail.com> | 2020-06-11 13:02:35 +0900 |
---|---|---|
committer | Hirokazu Hata <h.hata.ai.t@gmail.com> | 2020-08-26 12:06:07 +0900 |
commit | 154cbe61c44400aed924e2f793516dbdde5a3781 (patch) | |
tree | 956ae7d663c79753db0817123dd1447f180db003 /runtime/lua/vim/lsp/rpc.lua | |
parent | 43202964f39eed4e28fd8ad6ad0ec79a1868c33f (diff) | |
download | rneovim-154cbe61c44400aed924e2f793516dbdde5a3781.tar.gz rneovim-154cbe61c44400aed924e2f793516dbdde5a3781.tar.bz2 rneovim-154cbe61c44400aed924e2f793516dbdde5a3781.zip |
lsp: remove output log at rpc.notify
Since "rpc.send.payload" outputs the log with almost the same contents, delete the output here.
Diffstat (limited to 'runtime/lua/vim/lsp/rpc.lua')
-rw-r--r-- | runtime/lua/vim/lsp/rpc.lua | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/runtime/lua/vim/lsp/rpc.lua b/runtime/lua/vim/lsp/rpc.lua index 680e1ba6ae..64080cf4f2 100644 --- a/runtime/lua/vim/lsp/rpc.lua +++ b/runtime/lua/vim/lsp/rpc.lua @@ -376,7 +376,6 @@ local function start(cmd, cmd_args, handlers, extra_spawn_params) --@param params (table): Parameters for the invoked LSP method --@returns (bool) `true` if notification could be sent, `false` if not local function notify(method, params) - local _ = log.debug() and log.debug("rpc.notify", method, params) return encode_and_send { jsonrpc = "2.0"; method = method; |