We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c494994 commit a65063cCopy full SHA for a65063c
lua/nvim-tree/log.lua
@@ -54,7 +54,7 @@ function M.setup(opts)
54
if M.config.truncate then
55
os.remove(M.path)
56
end
57
- require("nvim-tree.notify").debug("nvim-tree.lua logging to " .. M.path)
+ require("nvim-tree.notify").info("nvim-tree.lua logging to " .. M.path)
58
59
60
lua/nvim-tree/notify.lua
@@ -30,8 +30,8 @@ do
30
31
32
for _, x in ipairs(modes) do
33
- M[x.name] = function(msg, ...)
34
- return dispatch(x.level, msg, ...)
+ M[x.name] = function(msg)
+ return dispatch(x.level, msg)
35
36
37
0 commit comments