fix(lsp): redundant spaces in lsp log (#29970)

This commit is contained in:
Jaehwang Jung 2024-08-03 18:14:34 +09:00 committed by GitHub
parent 6072153796
commit eb629cce91
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -19,7 +19,7 @@ local current_log_level = log_levels.WARN
local log_date_format = '%F %H:%M:%S'
local function format_func(arg)
return vim.inspect(arg, { newline = '' })
return vim.inspect(arg, { newline = ' ', indent = '' })
end
local function notify(msg, level)