From 9e18c16b2b378792c689591190774786fd5da04c Mon Sep 17 00:00:00 2001 From: Chase Colman <5411+chase@users.noreply.github.com> Date: Tue, 12 Oct 2021 23:33:41 +0800 Subject: fix(config/log): show error in config instead of hiding (#1751) --- lua/lvim/core/log.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lua/lvim/core/log.lua') diff --git a/lua/lvim/core/log.lua b/lua/lvim/core/log.lua index fca1fcb4..3d8c0dc8 100644 --- a/lua/lvim/core/log.lua +++ b/lua/lvim/core/log.lua @@ -12,7 +12,7 @@ function Log:add_entry(msg, level) end local status_ok, plenary = pcall(require, "plenary") if status_ok then - local default_opts = { plugin = "lunarvim", level = lvim.log.level } + local default_opts = { plugin = "lunarvim", level = lvim.log.level, info_level = 4 } local handle = plenary.log.new(default_opts) handle[level:lower()](msg) self.__handle = handle -- cgit v1.2.3