From cc18122be1c53e6736f4f7a75a32429b3bbca2a0 Mon Sep 17 00:00:00 2001 From: Alexander Courtis Date: Sun, 20 Nov 2022 12:26:59 +1100 Subject: [PATCH] fix(notify): log file notice info->debug --- lua/nvim-tree/log.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/nvim-tree/log.lua b/lua/nvim-tree/log.lua index 487af4e6..c307d7bc 100644 --- a/lua/nvim-tree/log.lua +++ b/lua/nvim-tree/log.lua @@ -54,7 +54,7 @@ function M.setup(opts) if M.config.truncate then os.remove(M.path) end - require("nvim-tree.notify").info("nvim-tree.lua logging to " .. M.path) + require("nvim-tree.notify").debug("nvim-tree.lua logging to " .. M.path) end end