mirror of https://github.com/folke/lazy.nvim.git
style: debug formatting
This commit is contained in:
parent
1c854d7a6d
commit
b2673f1057
|
@ -118,7 +118,7 @@ end
|
||||||
|
|
||||||
---@param msg string|table
|
---@param msg string|table
|
||||||
---@param level? number
|
---@param level? number
|
||||||
---@param opts? {lang?:string, title?:string}
|
---@param opts? {lang:string, title:string}
|
||||||
function M.log(msg, level, opts)
|
function M.log(msg, level, opts)
|
||||||
if M.debug then
|
if M.debug then
|
||||||
msg = vim.deepcopy(msg)
|
msg = vim.deepcopy(msg)
|
||||||
|
@ -208,7 +208,7 @@ function M.load(modkey, modpath)
|
||||||
entry.hash = hash
|
entry.hash = hash
|
||||||
|
|
||||||
if M.debug then
|
if M.debug then
|
||||||
M.log("`" .. modpath .. "`", nil, { title = "Cache.load" })
|
M.log("`" .. modpath .. "`", vim.log.levels.WARN, { title = "Cache.load" })
|
||||||
end
|
end
|
||||||
|
|
||||||
chunk, err = M._loadfile(entry.modpath)
|
chunk, err = M._loadfile(entry.modpath)
|
||||||
|
|
|
@ -216,7 +216,7 @@ function M.lsmod(modname, fn)
|
||||||
end
|
end
|
||||||
|
|
||||||
---@param msg string|string[]
|
---@param msg string|string[]
|
||||||
---@param opts? {lang?:string, title?:string}
|
---@param opts? {lang:string, title:string}
|
||||||
function M.notify(msg, level, opts)
|
function M.notify(msg, level, opts)
|
||||||
if vim.in_fast_event() then
|
if vim.in_fast_event() then
|
||||||
vim.schedule(function()
|
vim.schedule(function()
|
||||||
|
@ -268,14 +268,14 @@ end
|
||||||
|
|
||||||
---@param msg string|table
|
---@param msg string|table
|
||||||
---@param level? number
|
---@param level? number
|
||||||
---@param opts? {lang?:string, title?:string}
|
---@param opts? {lang:string, title:string}
|
||||||
function M.debug(msg, level, opts)
|
function M.debug(msg, level, opts)
|
||||||
if not require("lazy.core.config").options.debug then
|
if not require("lazy.core.config").options.debug then
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
opts = opts or {}
|
opts = opts or {}
|
||||||
if type(msg) == "string" then
|
if type(msg) == "string" then
|
||||||
M.notify(msg, level)
|
M.notify(msg, level, opts)
|
||||||
else
|
else
|
||||||
opts.lang = "lua"
|
opts.lang = "lua"
|
||||||
M.notify(vim.inspect(msg), level, opts)
|
M.notify(vim.inspect(msg), level, opts)
|
||||||
|
|
Loading…
Reference in New Issue